Fix recent emotion_gstreamer breakage...someone forgot to update the

function proto & change the module.init call :)


SVN revision: 28692
This commit is contained in:
Christopher Michael 2007-03-13 11:43:21 +00:00
parent 6b4ae8ce60
commit bbec1ed7dd
2 changed files with 4 additions and 4 deletions

View 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;

View 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);