From f5e5054094215b7c6730ec75616f4929daa0d348 Mon Sep 17 00:00:00 2001 From: Kona8lend Date: Sun, 31 May 2009 20:29:13 +0000 Subject: [PATCH] - added genreType output. --- util/mp4info.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/mp4info.cpp b/util/mp4info.cpp index f021071..d899dec 100644 --- a/util/mp4info.cpp +++ b/util/mp4info.cpp @@ -130,6 +130,9 @@ extern "C" int main( int argc, char** argv ) if ( tags->genre ) { fprintf( stdout, " Genre: %s\n", tags->genre ); } + if ( tags->genreType ) { + fprintf( stdout, " GenreType: %u\n", *tags->genreType ); + } if ( tags->grouping ) { fprintf( stdout, " Grouping: %s\n", tags->grouping ); }