From 6bac7258dd898d1304babe05217b3194c275d544 Mon Sep 17 00:00:00 2001 From: Yusuke Nakamura Date: Wed, 3 Sep 2014 19:02:30 +0900 Subject: [PATCH] mp4a: Fix printing 'floating' of ALSSpecificConfig. --- codecs/mp4a.c | 2 +- lsmash.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codecs/mp4a.c b/codecs/mp4a.c index 13f01ee..8ada331 100644 --- a/codecs/mp4a.c +++ b/codecs/mp4a.c @@ -796,7 +796,7 @@ static void mp4a_print_ALSSpecificConfig( FILE *fp, mp4a_AudioSpecificConfig_t * { mp4a_ALSSpecificConfig_t *alssc = (mp4a_ALSSpecificConfig_t *)asc->deepAudioSpecificConfig; const char *file_type [4] = { "raw", "wave", "aiff", "bwf" }; - const char *floating [2] = { "IEEE 32-bit floating-point", "integer" }; + const char *floating [2] = { "integer", "IEEE 32-bit floating-point" }; const char *endian [2] = { "little", "big" }; const char *ra_flag [4] = { "not stored", "stored at the beginning of frame_data()", "stored at the end of ALSSpecificConfig", "?" }; lsmash_ifprintf( fp, indent++, "[ALSSpecificConfig]\n" ); diff --git a/lsmash.h b/lsmash.h index e35ead6..faf2073 100644 --- a/lsmash.h +++ b/lsmash.h @@ -35,7 +35,7 @@ ****************************************************************************/ #define LSMASH_VERSION_MAJOR 1 #define LSMASH_VERSION_MINOR 13 -#define LSMASH_VERSION_MICRO 16 +#define LSMASH_VERSION_MICRO 17 #define LSMASH_VERSION_INT( a, b, c ) (((a) << 16) | ((b) << 8) | (c)) -- 2.11.4.GIT