emotion: call the right render function.

SVN revision: 77853
This commit is contained in:
Cedric BAIL 2012-10-11 08:25:34 +00:00
parent 2c3e27ca42
commit 371b00dae2
3 changed files with 12 additions and 1 deletions

View File

@ -54,3 +54,7 @@
2012-09-06 Sohyun Kim
* Add capsfilter to limit format and size for fimc on device.
2012-10-11 Sohyun Kim
* Fix to call correct render function based on the format.

View File

@ -18,6 +18,7 @@ Fixes:
- fix priority set/get for gstreamer.
- reset VLC pipeline on EOS.
- fix race condition on shutdown when still saving a file position.
- fix to call correct render function.
Improvements:

View File

@ -962,13 +962,19 @@ _video_update_pixels(void *data, Evas_Object *obj __UNUSED__, const Evas_Video_S
{
Emotion_Gstreamer_Video *ev = data;
Emotion_Gstreamer_Buffer *send;
EvasVideoSinkPrivate *priv = NULL;
if (!ev->send) return ;
send = ev->send;
priv = send->sink;
send->force = EINA_TRUE;
ev->send = NULL;
evas_video_sink_main_render(send);
if (priv->samsung)
evas_video_sink_samsung_main_render(send);
else
evas_video_sink_main_render(send);
}
static void