Browse Source

avformat/avidec: also print frame_num in debug output

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 11 years ago
parent
commit
81a6b075bd
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libavformat/avidec.c

+ 3
- 2
libavformat/avidec.c View File

@@ -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;


Loading…
Cancel
Save