raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=425de99145ff40aaea58d8df2ed0f36ade6443bc
commit 425de99145ff40aaea58d8df2ed0f36ade6443bc Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Mon Apr 20 12:14:10 2015 +0900 emotion gst1 module - remove printf this debugging printf seems to have been left around - remove it so we don't get unexpected noise in gst playback --- src/modules/emotion/gstreamer1/emotion_sink.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/modules/emotion/gstreamer1/emotion_sink.c b/src/modules/emotion/gstreamer1/emotion_sink.c index 6c410f8..eda2a6a 100644 --- a/src/modules/emotion/gstreamer1/emotion_sink.c +++ b/src/modules/emotion/gstreamer1/emotion_sink.c @@ -348,9 +348,6 @@ _update_emotion_fps(EmotionVideoSinkPrivate *priv) } else if ((tim - priv->rlapse) >= 0.5) { - printf("FRAME: %i, FPS: %3.1f\n", - priv->frames, - (priv->frames - priv->flapse) / (tim - priv->rlapse)); priv->rlapse = tim; priv->flapse = priv->frames; } --