[FFmpeg-soc] [soc]: r4323 - wmapro/wma3dec.c
faust3
subversion at mplayerhq.hu
Sat May 30 13:08:37 CEST 2009
Author: faust3
Date: Sat May 30 13:08:37 2009
New Revision: 4323
Log:
removed unused context parameter from wma_calc_decorrelation_matrix()
Modified:
wmapro/wma3dec.c
Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c Sat May 30 12:59:35 2009 (r4322)
+++ wmapro/wma3dec.c Sat May 30 13:08:37 2009 (r4323)
@@ -1011,10 +1011,9 @@ static int wma_decode_scale_factors(WMA3
/**
*@brief Calculate a decorrelation matrix from the bitstream parameters.
- *@param s codec context
*@param chgroup channel group for which the matrix needs to be calculated
*/
-static void wma_calc_decorrelation_matrix(WMA3DecodeContext *s, WMA3ChannelGroup* chgroup)
+static void wma_calc_decorrelation_matrix(WMA3ChannelGroup* chgroup)
{
int i;
int offset = 0;
@@ -1095,7 +1094,7 @@ static void wma_inverse_channel_transfor
/** multichannel decorrelation */
if(!s->chgroup[i].no_rotation)
- wma_calc_decorrelation_matrix(s,&s->chgroup[i]);
+ wma_calc_decorrelation_matrix(&s->chgroup[i]);
/** get the channels that use the transform */
for(x=0;x<s->channels_for_cur_subframe;x++){
More information about the FFmpeg-soc
mailing list