From 66ec3d56a2b1df959d53d65c5bb80bc76740580d Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Tue, 9 Sep 2008 02:56:13 +0000 Subject: [PATCH] print stream index in decimal not in hex, easier for debugging Originally committed as revision 15279 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mxfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 913848fa8f..ea90d522ea 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -311,7 +311,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 %x\n", AV_RB32(klv.key+12)); + av_log(s, AV_LOG_ERROR, "error getting stream index %d\n", AV_RB32(klv.key+12)); goto skip; } if (s->streams[index]->discard == AVDISCARD_ALL)