diff options
| author | Lennart Poettering <lennart@poettering.net> | 2009-04-07 00:46:20 +0200 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2009-04-07 00:46:20 +0200 | 
| commit | 61b07768c2f7fcc38a32ba31db837a57335ed664 (patch) | |
| tree | d69006dc5baeba9987930b49adee6cd06667a4b8 /src/pulsecore/source-output.h | |
| parent | 35a4a0baa8c83e1056d4fa6498aa789f76956ba7 (diff) | |
add suspend_within_thread() callbacks to pa_sink_input/pa_source_output
Diffstat (limited to 'src/pulsecore/source-output.h')
| -rw-r--r-- | src/pulsecore/source-output.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/src/pulsecore/source-output.h b/src/pulsecore/source-output.h index 9f5f7744..9824e160 100644 --- a/src/pulsecore/source-output.h +++ b/src/pulsecore/source-output.h @@ -120,6 +120,10 @@ struct pa_source_output {       * to suspends or resumes. Called from main context */      void (*suspend) (pa_source_output *o, pa_bool_t b);   /* may be NULL */ +    /* If non-NULL called whenever the source this output is attached +     * to suspends or resumes. Called from IO context */ +    void (*suspend_within_thread) (pa_source_output *o, pa_bool_t b);   /* may be NULL */ +      /* If non-NULL called whenever the source output is moved to a new       * source. Called from main context after the stream was detached       * from the old source and before it is attached to the new | 
