Skip to content

Commit

Permalink
mp4sys: Fix typo of graphicsProfileLevelIndication when dumping.
Browse files Browse the repository at this point in the history
  • Loading branch information
VFR-maniac committed Aug 6, 2014
1 parent c63f1b3 commit 6891dc7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions codecs/mp4sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -980,11 +980,11 @@ void mp4sys_print_ObjectDescriptor( FILE *fp, mp4sys_ObjectDescriptor_t *od, int
if( od->header.tag == MP4SYS_DESCRIPTOR_TAG_InitialObjectDescrTag
|| od->header.tag == MP4SYS_DESCRIPTOR_TAG_MP4_IOD_Tag )
{
lsmash_ifprintf( fp, indent, "ODProfileLevelIndication = 0x%02"PRIx8"\n", od->ODProfileLevelIndication );
lsmash_ifprintf( fp, indent, "sceneProfileLevelIndication = 0x%02"PRIx8"\n", od->sceneProfileLevelIndication );
lsmash_ifprintf( fp, indent, "audioProfileLevelIndication = 0x%02"PRIx8"\n", od->audioProfileLevelIndication );
lsmash_ifprintf( fp, indent, "visualProfileLevelIndication = 0x%02"PRIx8"\n", od->visualProfileLevelIndication );
lsmash_ifprintf( fp, indent, "ODProfileLevelIndication = 0x%02"PRIx8"\n", od->graphicsProfileLevelIndication );
lsmash_ifprintf( fp, indent, "ODProfileLevelIndication = 0x%02"PRIx8"\n", od->ODProfileLevelIndication );
lsmash_ifprintf( fp, indent, "sceneProfileLevelIndication = 0x%02"PRIx8"\n", od->sceneProfileLevelIndication );
lsmash_ifprintf( fp, indent, "audioProfileLevelIndication = 0x%02"PRIx8"\n", od->audioProfileLevelIndication );
lsmash_ifprintf( fp, indent, "visualProfileLevelIndication = 0x%02"PRIx8"\n", od->visualProfileLevelIndication );
lsmash_ifprintf( fp, indent, "graphicsProfileLevelIndication = 0x%02"PRIx8"\n", od->graphicsProfileLevelIndication );
}
if( od->header.tag == MP4SYS_DESCRIPTOR_TAG_MP4_OD_Tag
|| od->header.tag == MP4SYS_DESCRIPTOR_TAG_MP4_IOD_Tag )
Expand Down
2 changes: 1 addition & 1 deletion lsmash.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
****************************************************************************/
#define LSMASH_VERSION_MAJOR 1
#define LSMASH_VERSION_MINOR 12
#define LSMASH_VERSION_MICRO 2
#define LSMASH_VERSION_MICRO 3

#define LSMASH_VERSION_INT( a, b, c ) (((a) << 16) | ((b) << 8) | (c))

Expand Down

0 comments on commit 6891dc7

Please sign in to comment.