[FFmpeg-soc] [soc]: r5178 - als/alsdec.c

thilo.borgmann subversion at mplayerhq.hu
Wed Aug 19 23:11:12 CEST 2009


Author: thilo.borgmann
Date: Wed Aug 19 23:11:12 2009
New Revision: 5178

Log:
Fix const block sample value read.

Modified:
   als/alsdec.c

Modified: als/alsdec.c
==============================================================================
--- als/alsdec.c	Wed Aug 19 23:10:00 2009	(r5177)
+++ als/alsdec.c	Wed Aug 19 23:11:12 2009	(r5178)
@@ -496,7 +496,7 @@ static int read_block_data(ALSDecContext
             else
                 const_val_bits = avctx->bits_per_raw_sample;
 
-            const_val = get_bits_long(gb, const_val_bits);
+            const_val = get_sbits_long(gb, const_val_bits);
         }
 
         // write raw samples into buffer


More information about the FFmpeg-soc mailing list