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,
_______________________________________________
FFmpeg-soc mailing list
FFmpeg-soc@mplayerhq.hu
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to