[pulseaudio-commits] r2264 - /branches/glitch-free/src/pulsecore/sound-file-stream.c
svnmailer-noreply at 0pointer.de
svnmailer-noreply at 0pointer.de
Mon Apr 14 11:43:12 PDT 2008
Author: lennart
Date: Mon Apr 14 20:43:11 2008
New Revision: 2264
URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=2264&root=pulseaudio&view=rev
Log:
add _cb suffix to _max_rewind function like with all other functions, too
Modified:
branches/glitch-free/src/pulsecore/sound-file-stream.c
Modified: branches/glitch-free/src/pulsecore/sound-file-stream.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/branches/glitch-free/src/pulsecore/sound-file-stream.c?rev=2264&root=pulseaudio&r1=2263&r2=2264&view=diff
==============================================================================
--- branches/glitch-free/src/pulsecore/sound-file-stream.c (original)
+++ branches/glitch-free/src/pulsecore/sound-file-stream.c Mon Apr 14 20:43:11 2008
@@ -212,7 +212,7 @@
pa_memblockq_rewind(u->memblockq, nbytes);
}
-static void sink_input_set_max_rewind(pa_sink_input *i, size_t nbytes) {
+static void sink_input_set_max_rewind_cb(pa_sink_input *i, size_t nbytes) {
file_stream *u;
pa_sink_input_assert_ref(i);
@@ -332,7 +332,7 @@
u->sink_input->pop = sink_input_pop_cb;
u->sink_input->rewind = sink_input_rewind_cb;
- u->sink_input->set_max_rewind = sink_input_set_max_rewind;
+ u->sink_input->set_max_rewind = sink_input_set_max_rewind_cb;
u->sink_input->kill = sink_input_kill_cb;
u->sink_input->userdata = u;
More information about the pulseaudio-commits
mailing list