From: stefan Date: Fri, 15 Jun 2012 14:11:42 +0000 (+0000) Subject: emotion/gstreamer: Don't store return values if nobody reads them anyway. X-Git-Tag: submit/2.0alpha-wayland/20121127.222018~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef854ee822f79c37301d800ccf1e48df3f61ff53;p=profile%2Fivi%2Femotion.git emotion/gstreamer: Don't store return values if nobody reads them anyway. em_pos_set() returns void in all modules. Not much use of the return values in this case. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/emotion@72193 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/modules/gstreamer/emotion_gstreamer.c b/src/modules/gstreamer/emotion_gstreamer.c index 9d6b213..38abf57 100644 --- a/src/modules/gstreamer/emotion_gstreamer.c +++ b/src/modules/gstreamer/emotion_gstreamer.c @@ -621,16 +621,15 @@ em_pos_set(void *video, double pos) { Emotion_Gstreamer_Video *ev; - gboolean res; ev = (Emotion_Gstreamer_Video *)video; if (!ev->pipeline) return ; if (ev->play) - res = gst_element_set_state(ev->pipeline, GST_STATE_PAUSED); + gst_element_set_state(ev->pipeline, GST_STATE_PAUSED); - res = gst_element_seek(ev->pipeline, 1.0, + gst_element_seek(ev->pipeline, 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_ACCURATE | GST_SEEK_FLAG_FLUSH, GST_SEEK_TYPE_SET, @@ -638,7 +637,7 @@ em_pos_set(void *video, GST_SEEK_TYPE_NONE, -1); if (ev->play) - res = gst_element_set_state(ev->pipeline, GST_STATE_PLAYING); + gst_element_set_state(ev->pipeline, GST_STATE_PLAYING); } static double