mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
More pcm_jack plugin changes
This commit is contained in:
parent
88bc5d454e
commit
62546a3a32
7 changed files with 41 additions and 5 deletions
|
|
@ -347,7 +347,9 @@ enum _snd_pcm_type {
|
|||
/** LADSPA integration plugin */
|
||||
SND_PCM_TYPE_LADSPA,
|
||||
/** Direct Mixing plugin */
|
||||
SND_PCM_TYPE_DMIX
|
||||
SND_PCM_TYPE_DMIX,
|
||||
/** Jack Audio Connection Kit plugin */
|
||||
SND_PCM_TYPE_JACK,
|
||||
};
|
||||
|
||||
/** PCM type */
|
||||
|
|
|
|||
|
|
@ -183,6 +183,16 @@ int _snd_pcm_ladspa_open(snd_pcm_t **pcmp, const char *name,
|
|||
snd_config_t *root, snd_config_t *conf,
|
||||
snd_pcm_stream_t stream, int mode);
|
||||
|
||||
/*
|
||||
* Jack plugin
|
||||
*/
|
||||
int snd_pcm_jack_open(snd_pcm_t **pcmp, const char *name,
|
||||
snd_pcm_stream_t stream, int mode);
|
||||
int _snd_pcm_jack_open(snd_pcm_t **pcmp, const char *name,
|
||||
snd_config_t *root, snd_config_t *conf,
|
||||
snd_pcm_stream_t stream, int mode);
|
||||
|
||||
|
||||
/** \} */
|
||||
|
||||
#endif /* __ALSA_PCM_PLUGIN_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue