[FFmpeg-cvslog] r15735 - trunk/libavcodec/dca.c

banan subversion
Tue Oct 28 16:20:52 CET 2008


Author: banan
Date: Tue Oct 28 16:20:52 2008
New Revision: 15735

Log:
Fix the fix.

Modified:
   trunk/libavcodec/dca.c

Modified: trunk/libavcodec/dca.c
==============================================================================
--- trunk/libavcodec/dca.c	(original)
+++ trunk/libavcodec/dca.c	Tue Oct 28 16:20:52 2008
@@ -248,7 +248,7 @@ static int dca_parse_frame_header(DCACon
     s->sample_rate       = dca_sample_rates[get_bits(&s->gb, 4)];
     if (!s->sample_rate)
         return -1;
-    s->bit_rate_index;   = get_bits(&s->gb, 5);
+    s->bit_rate_index    = get_bits(&s->gb, 5);
     s->bit_rate          = dca_bit_rates[s->bit_rate_index];
     if (!s->bit_rate)
         return -1;




More information about the ffmpeg-cvslog mailing list