[FFmpeg-cvslog] avformat/avidec: also print frame_num in debug output

Michael Niedermayer git at videolan.org
Thu Mar 19 17:20:54 CET 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Mar 19 16:36:29 2015 +0100| [81a6b075bdddc2d84ba67f95b81bed1a2779ad15] | committer: Michael Niedermayer

avformat/avidec: also print frame_num in debug output

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=81a6b075bdddc2d84ba67f95b81bed1a2779ad15
---

 libavformat/avidec.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index 73c1817..6bd8b11 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -180,12 +180,13 @@ static int read_braindead_odml_indx(AVFormatContext *s, int frame_num)
 
     av_dlog(s,
             "longs_pre_entry:%d index_type:%d entries_in_use:%d "
-            "chunk_id:%X base:%16"PRIX64"\n",
+            "chunk_id:%X base:%16"PRIX64" frame_num:%d\n",
             longs_pre_entry,
             index_type,
             entries_in_use,
             chunk_id,
-            base);
+            base,
+            frame_num);
 
     if (stream_id >= s->nb_streams || stream_id < 0)
         return AVERROR_INVALIDDATA;



More information about the ffmpeg-cvslog mailing list