summaryrefslogtreecommitdiffstats
path: root/stream/tvi_v4l.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-10-04 06:40:32 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:18:08 +0200
commitdb90a65d11116cced00efafc7235ba01bbdf7564 (patch)
tree1f08585853633092dee265f4289d7caea71d76e7 /stream/tvi_v4l.c
parentee77268087b869f278ee5f54c800a277c97b923d (diff)
downloadmpv-db90a65d11116cced00efafc7235ba01bbdf7564.tar.bz2
mpv-db90a65d11116cced00efafc7235ba01bbdf7564.tar.xz
Remove remaining %lf printf conversions
Most cases are just code in comments. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32438 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/tvi_v4l.c')
-rw-r--r--stream/tvi_v4l.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/tvi_v4l.c b/stream/tvi_v4l.c
index 74098f8cae..d380a3684e 100644
--- a/stream/tvi_v4l.c
+++ b/stream/tvi_v4l.c
@@ -1702,7 +1702,7 @@ static void *video_grabber(void *data)
priv->video_interval_sum += orig_interval-prev_interval;
if (priv->video_avg_ptr >= VIDEO_AVG_BUFFER_SIZE) priv->video_avg_ptr = 0;
-// fprintf(stderr, "fps: %lf\n", (double)1e6*VIDEO_AVG_BUFFER_SIZE/priv->video_interval_sum);
+// fprintf(stderr, "fps: %f\n", (double)1e6*VIDEO_AVG_BUFFER_SIZE/priv->video_interval_sum);
// interpolate the skew in time
pthread_mutex_lock(&priv->skew_mutex);