فهرست منبع

Ensure AudioFrame variables l and r are always initialised

(cherry picked from commit d3f099457226ab833127ca66f5876855a9f2da0f)
Marcel Admiraal 3 سال پیش
والد
کامیت
b8b7c21583
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      core/math/audio_frame.h

+ 1 - 1
core/math/audio_frame.h

@@ -52,7 +52,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; }