Commit 483385a0 authored by bcoudurier's avatar bcoudurier

include track id in error message

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14025 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2b566489
...@@ -349,7 +349,7 @@ static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -349,7 +349,7 @@ static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt)
if (IS_KLV_KEY(klv.key, mxf_essence_element_key)) { if (IS_KLV_KEY(klv.key, mxf_essence_element_key)) {
int index = mxf_get_stream_index(s, &klv); int index = mxf_get_stream_index(s, &klv);
if (index < 0) { if (index < 0) {
av_log(s, AV_LOG_ERROR, "error getting stream index\n"); av_log(s, AV_LOG_ERROR, "error getting stream index %x\n", AV_RB32(klv.key+12));
goto skip; goto skip;
} }
if (s->streams[index]->discard == AVDISCARD_ALL) if (s->streams[index]->discard == AVDISCARD_ALL)
......
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