Commit 81a6b075 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/avidec: also print frame_num in debug output

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 01775c88
...@@ -180,12 +180,13 @@ static int read_braindead_odml_indx(AVFormatContext *s, int frame_num) ...@@ -180,12 +180,13 @@ static int read_braindead_odml_indx(AVFormatContext *s, int frame_num)
av_dlog(s, av_dlog(s,
"longs_pre_entry:%d index_type:%d entries_in_use:%d " "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, longs_pre_entry,
index_type, index_type,
entries_in_use, entries_in_use,
chunk_id, chunk_id,
base); base,
frame_num);
if (stream_id >= s->nb_streams || stream_id < 0) if (stream_id >= s->nb_streams || stream_id < 0)
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment