]> git.sesse.net Git - vlc/commitdiff
mediacontrol: Fix warnings about unused args.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 12 Aug 2008 22:02:55 +0000 (00:02 +0200)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 12 Aug 2008 22:57:25 +0000 (00:57 +0200)
src/control/mediacontrol_audio_video.c
src/control/mediacontrol_core.c

index 047f05fe4898b04c25d4713d53ca00d870fa4099..e139553c4168bfc51afbf1a56418f1e6258799d1 100644 (file)
@@ -55,6 +55,7 @@ mediacontrol_snapshot( mediacontrol_Instance *self,
                        const mediacontrol_Position * a_position,
                        mediacontrol_Exception *exception )
 {
+    (void)a_position;
     vlc_object_t* p_cache;
     vout_thread_t* p_vout;
     input_thread_t *p_input;
index 997f41247b18a32ab0c713b8796aec6fdf9878ab..9c13dbffa16c31ad156f5a4b6bbc83252c8d10fc 100644 (file)
@@ -330,6 +330,7 @@ mediacontrol_get_stream_information( mediacontrol_Instance *self,
                                      mediacontrol_PositionKey a_key,
                                      mediacontrol_Exception *exception )
 {
+    (void)a_key;
     mediacontrol_StreamInformation *retval = NULL;
     libvlc_media_t * p_media;
     libvlc_exception_t ex;