123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- /*
- * AudioJack.h - support for JACK-transport
- *
- * Copyright (c) 2005-2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
- *
- * This file is part of LMMS - https://lmms.io
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program (see COPYING); if not, write to the
- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301 USA.
- *
- */
- #ifndef AUDIO_JACK_H
- #define AUDIO_JACK_H
- #include "lmmsconfig.h"
- #ifdef LMMS_HAVE_JACK
- #ifndef LMMS_HAVE_WEAKJACK
- #include <jack/jack.h>
- #else
- #include "weak_libjack.h"
- #endif
- #include <atomic>
- #include <QtCore/QVector>
- #include <QtCore/QList>
- #include <QtCore/QMap>
- #include "AudioDevice.h"
- #include "AudioDeviceSetupWidget.h"
- class QLineEdit;
- class LcdSpinBox;
- class MidiJack;
- class AudioJack : public QObject, public AudioDevice
- {
- Q_OBJECT
- public:
- AudioJack( bool & _success_ful, AudioEngine* audioEngine );
- virtual ~AudioJack();
- // this is to allow the jack midi connection to use the same jack client connection
- // the jack callback is handled here, we call the midi client so that it can read
- // it's midi data during the callback
- AudioJack * addMidiClient(MidiJack *midiClient);
- void removeMidiClient(void) { m_midiClient = nullptr; }
- jack_client_t * jackClient() {return m_client;};
- inline static QString name()
- {
- return QT_TRANSLATE_NOOP( "AudioDeviceSetupWidget",
- "JACK (JACK Audio Connection Kit)" );
- }
- class setupWidget : public AudioDeviceSetupWidget
- {
- public:
- setupWidget( QWidget * _parent );
- virtual ~setupWidget();
- virtual void saveSettings();
- private:
- QLineEdit * m_clientName;
- LcdSpinBox * m_channels;
- } ;
- private slots:
- void restartAfterZombified();
- private:
- bool initJackClient();
- virtual void startProcessing();
- virtual void stopProcessing();
- virtual void applyQualitySettings();
- virtual void registerPort( AudioPort * _port );
- virtual void unregisterPort( AudioPort * _port );
- virtual void renamePort( AudioPort * _port );
- int processCallback( jack_nframes_t _nframes, void * _udata );
- static int staticProcessCallback( jack_nframes_t _nframes,
- void * _udata );
- static void shutdownCallback( void * _udata );
- jack_client_t * m_client;
- bool m_active;
- std::atomic<bool> m_stopped;
- std::atomic<MidiJack *> m_midiClient;
- QVector<jack_port_t *> m_outputPorts;
- jack_default_audio_sample_t * * m_tempOutBufs;
- surroundSampleFrame * m_outBuf;
- f_cnt_t m_framesDoneInCurBuf;
- f_cnt_t m_framesToDoInCurBuf;
- #ifdef AUDIO_PORT_SUPPORT
- struct StereoPort
- {
- jack_port_t * ports[2];
- } ;
- typedef QMap<AudioPort *, StereoPort> JackPortMap;
- JackPortMap m_portMap;
- #endif
- signals:
- void zombified();
- } ;
- #endif
- #endif
|