Make clang happy
authorenglebass <englebass@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 9 Feb 2010 21:04:56 +0000 (21:04 +0000)
committerenglebass <englebass@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 9 Feb 2010 21:04:56 +0000 (21:04 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/emotion@46023 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/modules/gstreamer/emotion_gstreamer.c

index 6500847..5ef24d2 100644 (file)
@@ -918,14 +918,16 @@ em_video_channel_count(void *video)
 }
 
 static void
-em_video_channel_set(void *video,
-                    int   channel)
+em_video_channel_set(void *video __UNUSED__,
+                    int   channel __UNUSED__)
 {
+#if 0
    Emotion_Gstreamer_Video *ev;
 
    ev = (Emotion_Gstreamer_Video *)video;
 
    if (channel < 0) channel = 0;
+#endif
    /* FIXME: a faire... */
 }
 
@@ -980,14 +982,16 @@ em_audio_channel_count(void *video)
 }
 
 static void
-em_audio_channel_set(void *video,
-                    int   channel)
+em_audio_channel_set(void *video __UNUSED__,
+                    int   channel __UNUSED__)
 {
+#if 0
    Emotion_Gstreamer_Video *ev;
 
    ev = (Emotion_Gstreamer_Video *)video;
 
    if (channel < -1) channel = -1;
+#endif
    /* FIXME: a faire... */
 }