On 5/11/11 11:00 PM, Alex Converse wrote:
From: Stefano Sabatini<[email protected]>

Signed-off-by: Stefano Sabatini<[email protected]>
(cherry picked from commit f7bdffb09da597c5d6afff5359523370470ad072)
---
  libavfilter/avfilter.c |    6 ++++--
  1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 82350d1..0291503 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",

k:%d

                  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,

ref->video->key_frame ? 'I' : ' ',

+                av_get_picture_type_char(ref->video->pict_type));
      }

Maybe?

lu
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to