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;
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to