[FFmpeg-cvslog] r20523 - trunk/libavformat/mov.c
alexc
subversion
Thu Nov 12 03:22:19 CET 2009
Author: alexc
Date: Thu Nov 12 03:22:19 2009
New Revision: 20523
Log:
Debug print MP4 objectTypeIndication in hex not decimal as values are listed in
hex in all official documents.
Modified:
trunk/libavformat/mov.c
Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c Thu Nov 12 02:45:04 2009 (r20522)
+++ trunk/libavformat/mov.c Thu Nov 12 03:22:19 2009 (r20523)
@@ -419,7 +419,7 @@ int ff_mov_read_esds(AVFormatContext *fc
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);
More information about the ffmpeg-cvslog
mailing list