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

thilo.borgmann subversion at mplayerhq.hu
Sat Aug 15 01:48:32 CEST 2009


Author: thilo.borgmann
Date: Sat Aug 15 01:48:32 2009
New Revision: 5104

Log:
Remove a bug in the buffer_size check.

Modified:
   als/alsdec.c

Modified: als/alsdec.c
==============================================================================
--- als/alsdec.c	Sat Aug 15 01:30:33 2009	(r5103)
+++ als/alsdec.c	Sat Aug 15 01:48:32 2009	(r5104)
@@ -272,7 +272,7 @@ static av_cold int read_specific_config(
         ht_size -= len;
     }
 
-    buffer_size -= ht_size;
+    buffer_size -= ht_size >> 3;
 
 
     // read the crc data


More information about the FFmpeg-soc mailing list