git-svn-id: http://svn.enlightenment.org/svn/e/trunk/emotion@77853
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
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.
- 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:
{
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