Commit 5b8d17cf authored by vaclav's avatar vaclav
Browse files

rename isar_framesize_to_ms() to isar_num_subfr_to_ms()

parent dd9359e4
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -370,7 +370,7 @@ Word32 isar_get_split_rend_md_target_brate(
    const Word16 pcm_out_flag                                  /* i  : flag to indicate PCM output             */
);

ivas_error isar_framesize_to_ms(
ivas_error isar_num_subfr_to_ms(
    const IVAS_RENDER_NUM_SUBFR render_num_subframes,           /* i  : rendering number of subframes           */
    Word16 *ms                                                  /* o  : frame size in ms                        */
);
+1 −1
Original line number Diff line number Diff line
@@ -2716,7 +2716,7 @@ ivas_error split_renderer_open_lc3plus(
    LC3PLUS_CONFIG config;
    Word16 isar_frame_size_ms;

    IF( ( error = isar_framesize_to_ms( render_num_subframes, &isar_frame_size_ms ) ) != IVAS_ERR_OK )
    IF( ( error = isar_num_subfr_to_ms( render_num_subframes, &isar_frame_size_ms ) ) != IVAS_ERR_OK )
    {
        return error;
    }
+2 −2
Original line number Diff line number Diff line
@@ -1280,12 +1280,12 @@ void isar_init_multi_bin_pose_data_fx_enc(


/*-------------------------------------------------------------------------
 * Function isar_framesize_to_ms()
 * Function isar_num_subfr_to_ms()
 *
 *
 *------------------------------------------------------------------------*/

ivas_error isar_framesize_to_ms(
ivas_error isar_num_subfr_to_ms(
    const IVAS_RENDER_NUM_SUBFR render_num_subframes, /* i  : rendering number of subframes */
    Word16 *ms                                        /* o  : frame size in ms              */
)