mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
add PA_SINK_OPENED/PA_SOURCE_OPENED macros for easier checking for _IDLE or _RUNNING states
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1555 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
10cb0483d9
commit
5fbb8e12d6
2 changed files with 9 additions and 1 deletions
|
|
@ -157,5 +157,9 @@ void pa_sink_render_into(pa_sink*s, pa_memchunk *target);
|
||||||
void pa_sink_render_into_full(pa_sink *s, pa_memchunk *target);
|
void pa_sink_render_into_full(pa_sink *s, pa_memchunk *target);
|
||||||
|
|
||||||
int pa_sink_process_msg(pa_msgobject *o, int code, void *userdata, pa_memchunk *chunk);
|
int pa_sink_process_msg(pa_msgobject *o, int code, void *userdata, pa_memchunk *chunk);
|
||||||
|
|
||||||
|
static inline int PA_SINK_OPENED(pa_sink_state_t x) {
|
||||||
|
return x == PA_SINK_RUNNING || x == PA_SINK_IDLE;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -148,4 +148,8 @@ unsigned pa_source_used_by(pa_source *s);
|
||||||
void pa_source_post(pa_source*s, const pa_memchunk *b);
|
void pa_source_post(pa_source*s, const pa_memchunk *b);
|
||||||
int pa_source_process_msg(pa_msgobject *o, int code, void *userdata, pa_memchunk *chunk);
|
int pa_source_process_msg(pa_msgobject *o, int code, void *userdata, pa_memchunk *chunk);
|
||||||
|
|
||||||
|
static inline int PA_SOURCE_OPENED(pa_source_state_t x) {
|
||||||
|
return x == PA_SOURCE_RUNNING || x == PA_SOURCE_IDLE;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue