Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2009-11-12 05:22:19 +0300
committerAlex Converse <alex.converse@gmail.com>2009-11-12 05:22:19 +0300
commitba278391baf1fd0ea5b8ca25560a24837b801ac6 (patch)
treedc1ff8da61f09b488aaeef7f909c1077d3c13413
parent9349e5582cc246584e645b300c317b8f9ef687e9 (diff)
Debug print MP4 objectTypeIndication in hex not decimal as values are listed in
hex in all official documents. Originally committed as revision 20523 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 196f41d1b4..564a1144b0 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -419,7 +419,7 @@ int ff_mov_read_esds(AVFormatContext *fc, ByteIOContext *pb, MOVAtom atom)
get_be32(pb); /* avg bitrate */
st->codec->codec_id= ff_codec_get_id(ff_mp4_obj_type, object_type_id);
- dprintf(fc, "esds object type id %d\n", object_type_id);
+ dprintf(fc, "esds object type id 0x%02x\n", object_type_id);
len = mp4_read_descr(fc, pb, &tag);
if (tag == MP4DecSpecificDescrTag) {
dprintf(fc, "Specific MPEG4 header len=%d\n", len);