[FFmpeg-soc] [soc]: r2925 - aac/aac.c
superdump
subversion at mplayerhq.hu
Wed Jul 30 17:20:25 CEST 2008
Author: superdump
Date: Wed Jul 30 17:20:25 2008
New Revision: 2925
Log:
Use unsigned int rather than uint8_t for 'grouping' local variable
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Wed Jul 30 17:20:25 2008
@@ -963,7 +963,7 @@ static void decode_ltp(AACContext * ac,
* @param common_window Channels have independent [0], or shared [1], Individual Channel Stream information.
*/
static int decode_ics_info(AACContext * ac, GetBitContext * gb, int common_window, IndividualChannelStream * ics) {
- uint8_t grouping;
+ unsigned int grouping;
if (get_bits1(gb)) {
av_log(ac->avccontext, AV_LOG_ERROR, "Reserved bit set.\n");
return -1;
More information about the FFmpeg-soc
mailing list