[FFmpeg-cvslog] r15279 - trunk/libavformat/mxfdec.c
bcoudurier
subversion
Tue Sep 9 04:56:13 CEST 2008
Author: bcoudurier
Date: Tue Sep 9 04:56:13 2008
New Revision: 15279
Log:
print stream index in decimal not in hex, easier for debugging
Modified:
trunk/libavformat/mxfdec.c
Modified: trunk/libavformat/mxfdec.c
==============================================================================
--- trunk/libavformat/mxfdec.c (original)
+++ trunk/libavformat/mxfdec.c Tue Sep 9 04:56:13 2008
@@ -311,7 +311,7 @@ static int mxf_read_packet(AVFormatConte
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)
More information about the ffmpeg-cvslog
mailing list