Wrong Q value comment in fucntion stereo_dft_sg_recovery_fx()
# Basic info
- Fixed point:
- Encoder (fixed): c3655dc67f25107ea6ad862a0af702382ffb6c0d
- Decoder (fixed): c3655dc67f25107ea6ad862a0af702382ffb6c0d
# Issue description
It appears that in function stereo_dft_sg_recovery() one instance of wrong Q value is written. please check this and correct it to avoid future confusions.
```
IF( LT_32( sg_m, (Word32) 0x4CCCCCCD ) && GT_32( sg_m, (Word32) ( 0xB3333333 ) ) )
{
hStereoDft->sg_mean_fx = 0; /* Q13 */
move32();
}
```
It should look like Q31 to match the previous instance it was edited. There is no functional problem with it.
issue