Incorrect comments in function peak_detect_fx()
# Basic info - Fixed point: - Encoder (fixed): efc6c0cf3f8bc617ce0b633d6f85eb6df518a09b - Decoder (fixed): efc6c0cf3f8bc617ce0b633d6f85eb6df518a09b # Issue description In function `peak_detect_fx()` there are two incorrect comments. ``` ELSE IF( detected_itd_flag == 0 && BASOP_Util_Cmp_Mant32Exp( *max_max, 0, Mpy_32_32( 1610612736 /*1.5f in Q29*/, avg_max ), add( sum_max_e, 1 ) ) > 0 && BASOP_Util_Cmp_Mant32Exp( *prev_max, 0, Mpy_32_32( 1610612736 /*1.5f in Q29*/, *prev_avg_max ), add( *prev_avg_max_e, 1 ) ) > 0 && LE_16( abs_s( sub( *index, *prev_index ) ), 2 ) ) { wfac = 805306368; // 1.5f in Q29 move32(); } ``` <div> </div> <div> </div>The comments with `/`_`1.5f in Q29`_`/` should be `/`_`1.5f in Q30`_`/`
issue