Commit 18bfc9c9 authored by sagnowski's avatar sagnowski
Browse files

Fix more MSVC warnigs

parent 012af922
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1187,12 +1187,12 @@ static Word16 isar_get_frame_size(
         ( st_ivas->hRenderConfig->split_rend_config.poseCorrectionMode == ISAR_SPLIT_REND_POSE_CORRECTION_MODE_NONE ||
           st_ivas->hRenderConfig->split_rend_config.dof == 0 ) )
    {
        nSamplesPerChannel = ar_div( output_Fs, FRAMES_PER_SEC * MAX_PARAM_SPATIAL_SUBFRAMES );
        nSamplesPerChannel = extract_l( ar_div( output_Fs, FRAMES_PER_SEC * MAX_PARAM_SPATIAL_SUBFRAMES ) );
        nSamplesPerChannel = imult1616( nSamplesPerChannel, st_ivas->hDecoderConfig->render_framesize );
    }
    else
    {
        nSamplesPerChannel = ar_div( output_Fs, FRAMES_PER_SEC );
        nSamplesPerChannel = extract_l( ar_div( output_Fs, FRAMES_PER_SEC ) );
    }

    return nSamplesPerChannel;