| Index: patched-ffmpeg-mt/libavfilter/avfilter.c
|
| ===================================================================
|
| --- patched-ffmpeg-mt/libavfilter/avfilter.c (revision 41250)
|
| +++ patched-ffmpeg-mt/libavfilter/avfilter.c (working copy)
|
| @@ -171,11 +171,11 @@
|
| static void dprintf_picref(void *ctx, AVFilterPicRef *picref, int end)
|
| {
|
| dprintf(ctx,
|
| - "picref[%p data[%p, %p, %p, %p] linesize[%d, %d, %d, %d] pts:%"PRId64" s:%dx%d]%s",
|
| + "picref[%p data[%p, %p, %p, %p] linesize[%d, %d, %d, %d] pts:%"PRId64" a:%d/%d s:%dx%d]%s",
|
| picref,
|
| picref->data [0], picref->data [1], picref->data [2], picref->data [3],
|
| picref->linesize[0], picref->linesize[1], picref->linesize[2], picref->linesize[3],
|
| - picref->pts, picref->w, picref->h,
|
| + picref->pts, picref->pixel_aspect.num, picref->pixel_aspect.den, picref->w, picref->h,
|
| end ? "\n" : "");
|
| }
|
|
|
|
|