jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
3.4KB

  1. /*
  2. Copyright (C) 2001 Paul Davis
  3. Copyright (C) 2004 Grame
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. */
  16. #ifndef __JackAlsaDriver__
  17. #define __JackAlsaDriver__
  18. #include "JackAudioDriver.h"
  19. #include "JackThreadedDriver.h"
  20. #include "JackTime.h"
  21. #include "alsa_driver.h"
  22. namespace Jack
  23. {
  24. /*!
  25. \brief The ALSA driver.
  26. */
  27. class JackAlsaDriver : public JackAudioDriver
  28. {
  29. private:
  30. jack_driver_t* fDriver;
  31. int fReservedCaptureDevice;
  32. int fReservedPlaybackDevice;
  33. public:
  34. JackAlsaDriver(const char* name, const char* alias, JackLockedEngine* engine, JackSynchro* table)
  35. : JackAudioDriver(name, alias, engine, table)
  36. ,fDriver(NULL)
  37. ,fReservedCaptureDevice(-1)
  38. ,fReservedPlaybackDevice(-1)
  39. {}
  40. virtual ~JackAlsaDriver()
  41. {}
  42. int Open(jack_nframes_t buffer_size,
  43. jack_nframes_t user_nperiods,
  44. jack_nframes_t samplerate,
  45. bool hw_monitoring,
  46. bool hw_metering,
  47. bool capturing,
  48. bool playing,
  49. DitherAlgorithm dither,
  50. bool soft_mode,
  51. bool monitor,
  52. int inchannels,
  53. int outchannels,
  54. bool shorts_first,
  55. const char* capture_driver_name,
  56. const char* playback_driver_name,
  57. jack_nframes_t capture_latency,
  58. jack_nframes_t playback_latency,
  59. const char* midi_driver_name);
  60. int Close();
  61. int Attach();
  62. int Detach();
  63. int Start();
  64. int Stop();
  65. int Read();
  66. int Write();
  67. // BufferSize can be changed
  68. bool IsFixedBufferSize()
  69. {
  70. return false;
  71. }
  72. int SetBufferSize(jack_nframes_t buffer_size);
  73. void ReadInputAux(jack_nframes_t orig_nframes, snd_pcm_sframes_t contiguous, snd_pcm_sframes_t nread);
  74. void MonitorInputAux();
  75. void ClearOutputAux();
  76. void WriteOutputAux(jack_nframes_t orig_nframes, snd_pcm_sframes_t contiguous, snd_pcm_sframes_t nwritten);
  77. void SetTimetAux(jack_time_t time);
  78. // JACK API emulation for the midi driver
  79. int is_realtime() const;
  80. int create_thread(pthread_t *thread, int prio, int rt, void *(*start_func)(void*), void *arg);
  81. jack_port_id_t port_register(const char *port_name, const char *port_type, unsigned long flags, unsigned long buffer_size);
  82. int port_unregister(jack_port_id_t port_index);
  83. void* port_get_buffer(int port, jack_nframes_t nframes);
  84. int port_set_alias(int port, const char* name);
  85. jack_nframes_t get_sample_rate() const;
  86. jack_nframes_t frame_time() const;
  87. jack_nframes_t last_frame_time() const;
  88. };
  89. } // end of namespace
  90. #endif