[SCM] libav/experimental: Debug print MP4 objectTypeIndication in hex not decimal as values are listed in hex in all official documents.
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:54:28 UTC 2013
The following commit has been merged in the experimental branch:
commit ba278391baf1fd0ea5b8ca25560a24837b801ac6
Author: Alex Converse <alex.converse at gmail.com>
Date: Thu Nov 12 02:22:19 2009 +0000
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
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 196f41d..564a114 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);
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list