]> git.sesse.net Git - vlc/commitdiff
Pulse: kill unused variable warnings
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 16 Dec 2009 09:30:12 +0000 (10:30 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 16 Dec 2009 09:30:12 +0000 (10:30 +0100)
modules/audio_output/pulse.c

index 8ef0edabdec17c3bf9cc0ef1c0f624b2d9c6337c..a2ccfbc2a150a82da4f4daf2ec1bd61ef57d4bbb 100644 (file)
@@ -433,6 +433,7 @@ static void stream_state_cb(pa_stream *s, void * userdata) {
 }
 
 static void stream_request_cb(pa_stream *s, size_t length, void *userdata) {
+    VLC_UNUSED( s );
     aout_instance_t *p_aout = (aout_instance_t *)userdata;
     struct aout_sys_t * p_sys = (struct aout_sys_t *) p_aout->output.p_sys;
     mtime_t next_date;
@@ -486,6 +487,7 @@ static void stream_request_cb(pa_stream *s, size_t length, void *userdata) {
 }
 
 static void stream_latency_update_cb(pa_stream *s, void *userdata) {
+    VLC_UNUSED( s );
     aout_instance_t *p_aout = (aout_instance_t *)userdata;
     struct aout_sys_t * p_sys = (struct aout_sys_t *) p_aout->output.p_sys;
 
@@ -498,6 +500,7 @@ static void stream_latency_update_cb(pa_stream *s, void *userdata) {
 
 static void success_cb(pa_stream *s, int sucess, void *userdata)
 {
+    VLC_UNUSED( s );
     aout_instance_t *p_aout = (aout_instance_t *)userdata;
     struct aout_sys_t * p_sys = (struct aout_sys_t *) p_aout->output.p_sys;