Commit 4e5ed448 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] incorrect if condition for framesize check

parent 3fc58bbf
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2173,7 +2173,7 @@ static ivas_error ivas_renderMultiTDBinToSplitBinaural(
         ( !useLc3plus && !pcm_out ) )
    {
#ifdef API_5MS
        if ( codec_frame_size_ms != 20 )
        if ( !useLc3plus && codec_frame_size_ms != 20 )
        {
            return IVAS_ERROR( IVAS_ERR_INVALID_INPUT_BUFFER_SIZE, "Unsupported framing for LCLD codec!" );
        }