Fix recent emotion_gstreamer breakage...someone forgot to update the
authordevilhorns <devilhorns>
Tue, 13 Mar 2007 11:43:21 +0000 (11:43 +0000)
committerdevilhorns <devilhorns@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 13 Mar 2007 11:43:21 +0000 (11:43 +0000)
function proto & change the module.init call :)

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/e17/libs/emotion@28692 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/modules/emotion_gstreamer.c
src/modules/emotion_gstreamer.h

index 3b2573a..555c0ab 100644 (file)
@@ -1257,7 +1257,7 @@ module_open(Evas_Object           *obj,
    if (!module)
       return 0;
 
-   if (!em_module.init(obj, video))
+   if (!em_module.init(obj, video, opt))
       return 0;
 
    *module = &em_module;
index a867ec4..7881dcd 100644 (file)
@@ -72,9 +72,9 @@ struct _Emotion_Gstreamer_Video
   unsigned char     audio_mute : 1;
 };
 
-unsigned char module_open  (Evas_Object           *obj,
-                            Emotion_Video_Module **module,
-                            void                 **video);
+unsigned char module_open(Evas_Object *obj,
+           Emotion_Video_Module **module,
+           void **video, Emotion_Module_Options *opt);
 
 void          module_close (Emotion_Video_Module  *module,
                             void                  *video);