Commit 30138212 authored by vaclav's avatar vaclav
Browse files

rename isar_framesize_to_ms() to isar_num_subfr_to_ms()

parent a1fc4395
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -352,7 +352,7 @@ int32_t isar_get_split_rend_md_target_brate(
    const int16_t 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           */
    int16_t *ms                                                 /* o  : frame size in ms                        */
);
+1 −1
Original line number Diff line number Diff line
@@ -1743,7 +1743,7 @@ ivas_error split_renderer_open_lc3plus(
    LC3PLUS_CONFIG config;
    int16_t 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
@@ -1033,12 +1033,12 @@ void isar_init_multi_bin_pose_data(


/*-------------------------------------------------------------------------
 * 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  */
    int16_t *ms                                       /* o  : frame size in ms               */
)