Commit 4040d977 authored by Jan Kiene's avatar Jan Kiene
Browse files

explicitly pass nullptr to param that is anyway unused

parent 8b02fdb8
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -644,7 +644,11 @@ static void run_min_stats(
                }
            }

#ifdef NONBE_FIX_1204_MDCT_STEREO_NOISE_EST_SCALING
            noisy_speech_detection( st->hFdCngDec, st->VAD && st->m_frame_type == ACTIVE_FRAME, NULL );
#else
            noisy_speech_detection( st->hFdCngDec, st->VAD && st->m_frame_type == ACTIVE_FRAME, power_spec );
#endif

            st->hFdCngDec->hFdCngCom->likelihood_noisy_speech = 0.99f * st->hFdCngDec->hFdCngCom->likelihood_noisy_speech + 0.01f * (float) st->hFdCngDec->hFdCngCom->flag_noisy_speech;