diff options
author | Lennart Poettering <lennart@poettering.net> | 2008-04-20 20:35:44 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2008-04-20 20:35:44 +0000 |
commit | 5971345e9951762ec27af3d824b2909c034b1c48 (patch) | |
tree | bbeaa1ae52108db04b856def5a5979fefef4b387 /src/pulsecore/source-output.h | |
parent | 62e7bc17c41c5542779a3c395a9d47d2bd306de2 (diff) |
rename sink_input->rewind to process_rewind() and set_max_rewind to update_max_rewind()
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/glitch-free@2284 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore/source-output.h')
-rw-r--r-- | src/pulsecore/source-output.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pulsecore/source-output.h b/src/pulsecore/source-output.h index f79761ae..e7d8963f 100644 --- a/src/pulsecore/source-output.h +++ b/src/pulsecore/source-output.h @@ -84,11 +84,11 @@ struct pa_source_output { /* Only relevant for monitor sources right now: called when the * recorded stream is rewound. */ - void (*rewind)(pa_source_output *o, size_t nbytes); + void (*process_rewind)(pa_source_output *o, size_t nbytes); /* Called whenever the maximum rewindable size of the source * changes. Called from RT context. */ - void (*set_max_rewind) (pa_source_output *o, size_t nbytes); /* may be NULL */ + void (*update_max_rewind) (pa_source_output *o, size_t nbytes); /* may be NULL */ /* If non-NULL this function is called when the output is first * connected to a source. Called from IO thread context */ @@ -209,7 +209,7 @@ int pa_source_output_move_to(pa_source_output *o, pa_source *dest); void pa_source_output_push(pa_source_output *o, const pa_memchunk *chunk); void pa_source_output_process_rewind(pa_source_output *o, size_t nbytes); -void pa_source_output_set_max_rewind(pa_source_output *o, size_t nbytes); +void pa_source_output_update_max_rewind(pa_source_output *o, size_t nbytes); int pa_source_output_process_msg(pa_msgobject *mo, int code, void *userdata, int64_t offset, pa_memchunk *chunk); |