Commit 0f934bf4 authored by Tapani Pihlajakuja's avatar Tapani Pihlajakuja
Browse files

Potential partial fix for float issue 1565

parent c0987abc
Loading
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -444,6 +444,12 @@ void update_bits_next_block(
                q_direction->band_data[j].bits_sph_idx[k] -= 1;
                diff--;
            }
#ifdef FIX_FLOAT_1565_UPDATE_BITS_INCREMENT
            if ( q_direction->band_data[j].bits_sph_idx[k] == 0 )
            {
                k++;
            }
#endif
        }
    }
    *p_diff = diff;
+1 −0
Original line number Diff line number Diff line
@@ -172,6 +172,7 @@
#define FIX_1576_LCLD_CRASH_DIFFERENT_CODEC_ISAR_FRAME_SIZE  /* Dolby: float issue 1576: fix for crash in LCLD mode when codec frame size is less than isar frame size */
#define FIX_BASOP_2612_RESET_DECIM_MEM                  /* FhG: BASOP #2612: reset (zero) the 16k resampler memory of the secondary channel on DFT->TD stereo switch (otherwise -> fx overshoot) */
#define FIX_FLOAT_1600_OMASA_WRONG_RENDER_PATH          /* Nokia: float issue 1600: fix initialization condition of stereo type detection for OMASA */
#define FIX_FLOAT_1565_UPDATE_BITS_INCREMENT            /* Nokia: float issue 1565: potential partial fix by incrementing counter in else path */

/* ##################### End NON-BE switches ########################### */