summaryrefslogtreecommitdiff
path: root/libavformat/mxf.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-06-28 20:32:37 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-06-28 20:32:37 +0000
commit90ffc4902efdb842defa764307fc2cc4eaecb1b7 (patch)
tree8002a7706f760b25e63444206128a407cd905891 /libavformat/mxf.c
parentf056c8e9ddc97266d18ae4b88d7ffe576115af82 (diff)
include track id in error message
Originally committed as revision 14025 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mxf.c')
-rw-r--r--libavformat/mxf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c
index 921b49570a..5f9aeba43c 100644
--- a/libavformat/mxf.c
+++ b/libavformat/mxf.c
@@ -349,7 +349,7 @@ static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt)
if (IS_KLV_KEY(klv.key, mxf_essence_element_key)) {
int index = mxf_get_stream_index(s, &klv);
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;
}
if (s->streams[index]->discard == AVDISCARD_ALL)