1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

lavdev/lavfi: add debug traces in lavfi_read_packet()

This commit is contained in:
Stefano Sabatini
2011-08-29 18:41:50 +02:00
parent 22ee131e85
commit 6da590d0a5

View File

@@ -230,11 +230,14 @@ static int lavfi_read_packet(AVFormatContext *avctx, AVPacket *pkt)
if (ret < 0) if (ret < 0)
return ret; return ret;
d = av_rescale_q(picref->pts, tb, AV_TIME_BASE_Q); d = av_rescale_q(picref->pts, tb, AV_TIME_BASE_Q);
av_dlog(avctx, "sink_idx:%d time:%f\n", i, d);
if (d < min_pts) { if (d < min_pts) {
min_pts = d; min_pts = d;
min_pts_sink_idx = i; min_pts_sink_idx = i;
} }
} }
av_dlog(avctx, "min_pts_sink_idx:%i\n", min_pts_sink_idx);
av_vsink_buffer_get_video_buffer_ref(lavfi->sinks[min_pts_sink_idx], av_vsink_buffer_get_video_buffer_ref(lavfi->sinks[min_pts_sink_idx],
&picref, 0); &picref, 0);