diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-23 19:55:59 +0200 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2011-05-16 14:13:03 -0700 |
commit | 5dc65a3d0374ffd85e5ff1c89f5917d392897920 (patch) | |
tree | a6fa5946613068a61fac432dbd1835dd1f125630 | |
parent | 005db470115ebe2c973688bed9695356f487d674 (diff) | |
download | ffmpeg-5dc65a3d0374ffd85e5ff1c89f5917d392897920.tar.gz |
lavfi: print key-frame and picture type information in ff_dlog_ref()
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
(cherry picked from commit f7bdffb09da597c5d6afff5359523370470ad072)
-rw-r--r-- | libavfilter/avfilter.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 82350d1790..02915036ab 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -237,11 +237,13 @@ static void ff_dlog_ref(void *ctx, AVFilterBufferRef *ref, int end) ref->pts, ref->pos); if (ref->video) { - av_dlog(ctx, " a:%d/%d s:%dx%d i:%c", + av_dlog(ctx, " a:%d/%d s:%dx%d i:%c iskey:%d type:%c", ref->video->pixel_aspect.num, ref->video->pixel_aspect.den, ref->video->w, ref->video->h, !ref->video->interlaced ? 'P' : /* Progressive */ - ref->video->top_field_first ? 'T' : 'B'); /* Top / Bottom */ + ref->video->top_field_first ? 'T' : 'B', /* Top / Bottom */ + ref->video->key_frame, + av_get_picture_type_char(ref->video->pict_type)); } if (ref->audio) { av_dlog(ctx, " cl:%"PRId64"d sn:%d s:%d sr:%d p:%d", |