emotion gst1 module - remove printf
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Mon, 20 Apr 2015 03:14:10 +0000 (12:14 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Mon, 20 Apr 2015 09:34:58 +0000 (18:34 +0900)
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

index 6c410f8..eda2a6a 100644 (file)
@@ -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;
      }