Ensure AudioFrame variables l and r are always initialised

(cherry picked from commit d3f099457226ab833127ca66f5876855a9f2da0f)
This commit is contained in:
Marcel Admiraal 2022-06-17 17:36:11 +01:00 committed by Relintai
parent 76a2ed0900
commit 24d15ae3f7

View File

@ -51,7 +51,7 @@ static const float AUDIO_MIN_PEAK_DB = -200.0f; // linear2db(AUDIO_PEAK_OFFSET)
struct AudioFrame {
//left and right samples
float l, r;
float l = 0.f, r = 0.f;
_ALWAYS_INLINE_ const float &operator[](int idx) const { return idx == 0 ? l : r; }
_ALWAYS_INLINE_ float &operator[](int idx) { return idx == 0 ? l : r; }