summaryrefslogtreecommitdiff
path: root/libavfilter/f_setpts.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-08-23 12:31:47 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-08-24 13:32:59 +0200
commitb66afe087ae15417282c6a7b1fcf08fc72802766 (patch)
tree54c26a6d7313f968050e5677ec9dd976e5d47001 /libavfilter/f_setpts.c
parent1181461ca5852206793a77d5856559c2face9263 (diff)
lavfi/asetpts,setpts: rework debug log
Show more information, and only the information stored in the values array. Improve debugging usefulness.
Diffstat (limited to 'libavfilter/f_setpts.c')
-rw-r--r--libavfilter/f_setpts.c29
1 files changed, 14 insertions, 15 deletions
diff --git a/libavfilter/f_setpts.c b/libavfilter/f_setpts.c
index 738fbf3f60..177d29b383 100644
--- a/libavfilter/f_setpts.c
+++ b/libavfilter/f_setpts.c
@@ -146,26 +146,25 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
d = av_expr_eval(setpts->expr, setpts->var_values, NULL);
outpicref->pts = D2TS(d);
-#ifdef DEBUG
- av_log(inlink->dst, AV_LOG_DEBUG,
- "n:%"PRId64" interlaced:%d nb_samples:%d nb_consumed_samples:%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_NB_SAMPLES],
- (int)setpts->var_values[VAR_NB_CONSUMED_SAMPLES],
- inpicref ->pos,
- inpicref ->pts, inpicref ->pts * av_q2d(inlink->time_base),
- outpicref->pts, outpicref->pts * av_q2d(inlink->time_base));
-
-#endif
-
- setpts->var_values[VAR_N] += 1.0;
setpts->var_values[VAR_PREV_INPTS ] = TS2D(inpicref ->pts);
setpts->var_values[VAR_PREV_INT ] = TS2T(inpicref ->pts, inlink->time_base);
setpts->var_values[VAR_PREV_OUTPTS] = TS2D(outpicref->pts);
setpts->var_values[VAR_PREV_OUTT] = TS2T(outpicref->pts, inlink->time_base);
+ av_dlog(inlink->dst,
+ "n:%"PRId64" interlaced:%d nb_samples:%d nb_consumed_samples:%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_NB_SAMPLES],
+ (int)setpts->var_values[VAR_NB_CONSUMED_SAMPLES],
+ (int64_t)setpts->var_values[VAR_POS],
+ (int64_t)setpts->var_values[VAR_PREV_INPTS],
+ setpts->var_values[VAR_PREV_INT],
+ (int64_t)setpts->var_values[VAR_PREV_OUTPTS],
+ setpts->var_values[VAR_PREV_OUTT]);
+
+ setpts->var_values[VAR_N] += 1.0;
if (setpts->type == AVMEDIA_TYPE_AUDIO) {
setpts->var_values[VAR_NB_CONSUMED_SAMPLES] += inpicref->audio->nb_samples;
return ff_filter_samples(inlink->dst->outputs[0], outpicref);