[FFmpeg-cvslog] r24637 - trunk/libavcodec/dca.c
banan
subversion
Sun Aug 1 00:15:59 CEST 2010
Author: banan
Date: Sun Aug 1 00:15:59 2010
New Revision: 24637
Log:
dca: fix dynrange coefficient in xch
Patch by Nick Brereton
Modified:
trunk/libavcodec/dca.c
Modified: trunk/libavcodec/dca.c
==============================================================================
--- trunk/libavcodec/dca.c Sat Jul 31 23:56:15 2010 (r24636)
+++ trunk/libavcodec/dca.c Sun Aug 1 00:15:59 2010 (r24637)
@@ -691,7 +691,7 @@ static int dca_subframe_header(DCAContex
}
/* Dynamic range coefficient */
- if (s->dynrange)
+ if (!base_channel && s->dynrange)
s->dynrange_coef = get_bits(&s->gb, 8);
/* Side information CRC check word */
More information about the ffmpeg-cvslog
mailing list