Browse code

lavfi/telecine: show time base change too

Signed-off-by: Paul B Mahol <onemda@gmail.com>

Paul B Mahol authored on 2013/04/26 01:52:29
Showing 1 changed files
... ...
@@ -156,6 +156,8 @@ static int config_output(AVFilterLink *outlink)
156 156
     outlink->flags |= FF_LINK_FLAG_REQUEST_LOOP;
157 157
     outlink->frame_rate = fps;
158 158
     outlink->time_base = av_mul_q(inlink->time_base, tc->pts);
159
+    av_log(ctx, AV_LOG_VERBOSE, "TB: %d/%d -> %d/%d\n",
160
+           inlink->time_base.num, inlink->time_base.den, outlink->time_base.num, outlink->time_base.den);
159 161
 
160 162
     tc->ts_unit = av_q2d(av_inv_q(av_mul_q(fps, outlink->time_base)));
161 163