From 735115f58104fb37221d4f56868c34d9f053e5f9 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 15 Jun 2012 14:11:42 +0000 Subject: [PATCH] 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. SVN revision: 72193 --- legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c b/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c index 9d6b213563..38abf57dd2 100644 --- a/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c +++ b/legacy/emotion/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