Commit 36a462ba authored by korse's avatar korse
Browse files

[Fix] Fix for issue 155. Changes BE for ParamISM modes

parent c85daa3a
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -151,6 +151,7 @@
#define CORECODER_BITRATE_SWITCHING                     /* Issue 133: support bitrate switching in core-coder */
#define ISM_BITRATE_SWITCHING                           /* Issue 115: Support for Bitrate Switching in ISM */
#define SBA_SPAR_HARM                                   /* Issue 92: maintenance of the SBA SPAR functions */
#define FIX_155_HP20_ISSUE                              /* Issue 155: apply hp20 on all input channels instead of just 2 channels */



+6 −0
Original line number Diff line number Diff line
@@ -190,6 +190,12 @@ int16_t getNumChanAnalysis(
    {
        n = st_ivas->hEncoderConfig->nchan_inp;
    }
#ifdef FIX_155_HP20_ISSUE
    else if ( st_ivas->hEncoderConfig->ivas_format == ISM_FORMAT && st_ivas->ism_mode == ISM_MODE_PARAM )
    {
        n = st_ivas->hEncoderConfig->nchan_inp;
    }
#endif

    return n;
}