Commit 20aaa2af authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

fix compiler warning

parent 3ab14358
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1055,8 +1055,8 @@ void ivas_ism_dec_digest_tc_fx(
                {
                    /*get HOA gets for direction (ACN/SN3D)*/
#ifdef FIX_2193_ISM_GAINS_WITH_OE
                    Word16 azi = azimuth_fx;   // Q0
                    Word16 ele = elevation_fx; // Q0
                    Word16 azi = (Word16) azimuth_fx;   // Q0
                    Word16 ele = (Word16) elevation_fx; // Q0
#else
                    Word16 azi = shr( extract_h( st_ivas->hIsmMetaData[i]->azimuth_fx ), 22 - 16 );   // Q0
                    Word16 ele = shr( extract_h( st_ivas->hIsmMetaData[i]->elevation_fx ), 22 - 16 ); // Q0