From f105394f1683ee2ec25993010e365004cdd65b81 Mon Sep 17 00:00:00 2001 From: devilhorns Date: Tue, 13 Mar 2007 11:43:21 +0000 Subject: [PATCH] Fix recent emotion_gstreamer breakage...someone forgot to update the 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 | 2 +- src/modules/emotion_gstreamer.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/emotion_gstreamer.c b/src/modules/emotion_gstreamer.c index 3b2573a..555c0ab 100644 --- a/src/modules/emotion_gstreamer.c +++ b/src/modules/emotion_gstreamer.c @@ -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; diff --git a/src/modules/emotion_gstreamer.h b/src/modules/emotion_gstreamer.h index a867ec4..7881dcd 100644 --- a/src/modules/emotion_gstreamer.h +++ b/src/modules/emotion_gstreamer.h @@ -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); -- 2.7.4