summaryrefslogtreecommitdiffstats
path: root/libavfilter
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-01-27 01:01:34 +0100
committerJanne Grunau <janne-ffmpeg@jannau.net>2011-01-28 17:27:54 +0100
commit3e5bc7ff6a23014daf2eb0b9a22986753ae2ec4f (patch)
tree377e3b4eb47fdfd58568bf3bcd63588f115449fc /libavfilter
parent9d4bdcb714f85b5d90ebf9704784a31c88dfb360 (diff)
downloadffmpeg-streaming-3e5bc7ff6a23014daf2eb0b9a22986753ae2ec4f.zip
ffmpeg-streaming-3e5bc7ff6a23014daf2eb0b9a22986753ae2ec4f.tar.gz
In the start_frame() debug log, print the reference pos value rather than the evaluated value converted to int.
That's required because -1 is evaluated as NAN, which converted back to int looks like a random number, this is especially annoying when debugging sources with undefined pos (as the video4linux2 device). Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_setpts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_setpts.c b/libavfilter/vf_setpts.c
index 0921df7..31fa1ef 100644
--- a/libavfilter/vf_setpts.c
+++ b/libavfilter/vf_setpts.c
@@ -116,10 +116,10 @@ static void start_frame(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
#ifdef DEBUG
av_log(inlink->dst, AV_LOG_DEBUG,
- "n:%"PRId64" interlaced:%d pos:%d pts:%"PRId64" t:%f -> pts:%"PRId64" t:%f\n",
+ "n:%"PRId64" interlaced:%d pos:%"PRId64" pts:%"PRId64" t:%f -> pts:%"PRId64" t:%f\n",
(int64_t)setpts->var_values[VAR_N],
(int)setpts->var_values[VAR_INTERLACED],
- (int)setpts->var_values[VAR_POS],
+ inpicref ->pos,
inpicref ->pts, inpicref ->pts * av_q2d(inlink->time_base),
outpicref->pts, outpicref->pts * av_q2d(inlink->time_base));
#endif
OpenPOWER on IntegriCloud