Mercurial > libavformat.hg
changeset 5364:4a925b59dc1b libavformat
Debug print MP4 objectTypeIndication in hex not decimal as values are listed in
hex in all official documents.
author | alexc |
---|---|
date | Thu, 12 Nov 2009 02:22:19 +0000 |
parents | 4696e193f943 |
children | 4097dc22e612 |
files | mov.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mov.c Wed Nov 11 21:57:50 2009 +0000 +++ b/mov.c Thu Nov 12 02:22:19 2009 +0000 @@ -419,7 +419,7 @@ 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);