[FFmpeg-soc] [soc]: r2886 - aac/aac.c

superdump subversion at mplayerhq.hu
Mon Jul 28 15:02:08 CEST 2008


Author: superdump
Date: Mon Jul 28 15:02:08 2008
New Revision: 2886

Log:
Source coefficients in channel coupling should be const


Modified:
   aac/aac.c

Modified: aac/aac.c
==============================================================================
--- aac/aac.c	(original)
+++ aac/aac.c	Mon Jul 28 15:02:08 2008
@@ -2044,7 +2044,7 @@ static void dependent_coupling(AACContex
     IndividualChannelStream * ics = &cc->ch[0].ics;
     const uint16_t * offsets = ics->swb_offset;
     float * dest = sce->coeffs;
-    float * src = cc->ch[0].coeffs;
+    const float * src = cc->ch[0].coeffs;
     int g, i, group, k;
     if(ac->m4ac.object_type == AOT_AAC_LTP) {
         av_log(ac->avccontext, AV_LOG_ERROR,



More information about the FFmpeg-soc mailing list