Commit c8643bbc authored by malenov's avatar malenov
Browse files

change from float **x to float *x[]

parent fac31122
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2560,8 +2560,8 @@ void stereo_decoder_tcx(
    int16_t ms_mask[NB_DIV][MAX_SFB],                           /* i  : bandwise MS mask                        */
    float *spec_r_0[NB_DIV],                                    /* i/o: spectrum right channel                  */
#ifdef FIX_887_ARRAY_SIZE_DFT_MDCT_STEREO
    float **spec_l,                                             /* i/o: spectrum left channel  [NB_DIV][N]      */
    float **spec_r,                                             /* i/o: spectrum right channel [NB_DIV][N]      */
    float *spec_l[],                                            /* i/o: spectrum left channel  [NB_DIV][N]      */
    float *spec_r[],                                            /* i/o: spectrum right channel [NB_DIV][N]      */
#else
    float *spec_l[NB_DIV],                                      /* i/o: spectrum left channel                   */
    float *spec_r[NB_DIV],                                      /* i/o: spectrum right channel                  */
+2 −2
Original line number Diff line number Diff line
@@ -210,8 +210,8 @@ void stereo_decoder_tcx(
    int16_t ms_mask[NB_DIV][MAX_SFB],  /* i  : bandwise MS mask                        */
    float *spec_r_0[NB_DIV],           /* i/o: spectrum right channel                  */
#ifdef FIX_887_ARRAY_SIZE_DFT_MDCT_STEREO
    float **spec_l, /* i/o: spectrum left channel  [NB_DIV][N]      */
    float **spec_r, /* i/o: spectrum right channel [NB_DIV][N]      */
    float *spec_l[], /* i/o: spectrum left channel  [NB_DIV][N]      */
    float *spec_r[], /* i/o: spectrum right channel [NB_DIV][N]      */
#else
    float *spec_l[NB_DIV], /* i/o: spectrum left channel                   */
    float *spec_r[NB_DIV], /* i/o: spectrum right channel                  */