Commit 506a8bfe authored by vaclav's avatar vaclav
Browse files

comments

parent 43ba5d8f
Loading
Loading
Loading
Loading
+15 −7
Original line number Diff line number Diff line
@@ -822,9 +822,9 @@ void stereo_tcx_core_dec(


/*-----------------------------------------------------------------*
 * Function dec_prm_tcx()                                          *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                   *
 * decode TCX parameters
 * Function dec_prm_tcx()
 * 
 * Decode TCX parameters
 *-----------------------------------------------------------------*/

static void dec_prm_tcx(
@@ -960,10 +960,16 @@ static void dec_prm_tcx(
}

#ifdef FIX_TCX_DEC_RECONF_BFI
/*-----------------------------------------------------------------*
 * Function stereo_tcx_dec_mode_switch_reconf()
 * 
 * Reconfigure stereo TCX parameters
 *-----------------------------------------------------------------*/

static void stereo_tcx_dec_mode_switch_reconf(
    Decoder_State *st,
    const int16_t MCT_flag,
    const int16_t last_element_mode
    Decoder_State *st,              /* i/o: decoder state structure             */
    const int16_t MCT_flag,         /* i  : hMCT handle allocated (1) or not (0)*/
    const int16_t last_element_mode /* i  : element mode of previous frame      */
)
{
    int16_t frame_size_index;
@@ -991,5 +997,7 @@ static void stereo_tcx_dec_mode_switch_reconf(

    /* Reconfigure Core */
    mode_switch_decoder_LPD( st, st->bwidth, st->bits_frame_nominal * FRAMES_PER_SEC, st->last_bits_frame_nominal * FRAMES_PER_SEC, frame_size_index, MCT_flag, last_element_mode );

    return;
}
#endif