audio_frame.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /**************************************************************************/
  2. /* audio_frame.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef AUDIO_FRAME_H
  31. #define AUDIO_FRAME_H
  32. #include "core/math/vector2.h"
  33. #include "core/typedefs.h"
  34. static inline float undenormalize(volatile float f) {
  35. union {
  36. uint32_t i;
  37. float f;
  38. } v;
  39. v.f = f;
  40. // original: return (v.i & 0x7f800000) == 0 ? 0.0f : f;
  41. // version from Tim Blechmann:
  42. return (v.i & 0x7f800000) < 0x08000000 ? 0.0f : f;
  43. }
  44. static const float AUDIO_PEAK_OFFSET = 0.0000000001f;
  45. static const float AUDIO_MIN_PEAK_DB = -200.0f; // linear_to_db(AUDIO_PEAK_OFFSET)
  46. struct AudioFrame {
  47. //left and right samples
  48. float l = 0.f, r = 0.f;
  49. _ALWAYS_INLINE_ const float &operator[](int idx) const { return idx == 0 ? l : r; }
  50. _ALWAYS_INLINE_ float &operator[](int idx) { return idx == 0 ? l : r; }
  51. _ALWAYS_INLINE_ AudioFrame operator+(const AudioFrame &p_frame) const { return AudioFrame(l + p_frame.l, r + p_frame.r); }
  52. _ALWAYS_INLINE_ AudioFrame operator-(const AudioFrame &p_frame) const { return AudioFrame(l - p_frame.l, r - p_frame.r); }
  53. _ALWAYS_INLINE_ AudioFrame operator*(const AudioFrame &p_frame) const { return AudioFrame(l * p_frame.l, r * p_frame.r); }
  54. _ALWAYS_INLINE_ AudioFrame operator/(const AudioFrame &p_frame) const { return AudioFrame(l / p_frame.l, r / p_frame.r); }
  55. _ALWAYS_INLINE_ AudioFrame operator+(float p_sample) const { return AudioFrame(l + p_sample, r + p_sample); }
  56. _ALWAYS_INLINE_ AudioFrame operator-(float p_sample) const { return AudioFrame(l - p_sample, r - p_sample); }
  57. _ALWAYS_INLINE_ AudioFrame operator*(float p_sample) const { return AudioFrame(l * p_sample, r * p_sample); }
  58. _ALWAYS_INLINE_ AudioFrame operator/(float p_sample) const { return AudioFrame(l / p_sample, r / p_sample); }
  59. _ALWAYS_INLINE_ void operator+=(const AudioFrame &p_frame) {
  60. l += p_frame.l;
  61. r += p_frame.r;
  62. }
  63. _ALWAYS_INLINE_ void operator-=(const AudioFrame &p_frame) {
  64. l -= p_frame.l;
  65. r -= p_frame.r;
  66. }
  67. _ALWAYS_INLINE_ void operator*=(const AudioFrame &p_frame) {
  68. l *= p_frame.l;
  69. r *= p_frame.r;
  70. }
  71. _ALWAYS_INLINE_ void operator/=(const AudioFrame &p_frame) {
  72. l /= p_frame.l;
  73. r /= p_frame.r;
  74. }
  75. _ALWAYS_INLINE_ void operator+=(float p_sample) {
  76. l += p_sample;
  77. r += p_sample;
  78. }
  79. _ALWAYS_INLINE_ void operator-=(float p_sample) {
  80. l -= p_sample;
  81. r -= p_sample;
  82. }
  83. _ALWAYS_INLINE_ void operator*=(float p_sample) {
  84. l *= p_sample;
  85. r *= p_sample;
  86. }
  87. _ALWAYS_INLINE_ void operator/=(float p_sample) {
  88. l /= p_sample;
  89. r /= p_sample;
  90. }
  91. _ALWAYS_INLINE_ void undenormalize() {
  92. l = ::undenormalize(l);
  93. r = ::undenormalize(r);
  94. }
  95. _FORCE_INLINE_ AudioFrame lerp(const AudioFrame &p_b, float p_t) const {
  96. AudioFrame res = *this;
  97. res.l += (p_t * (p_b.l - l));
  98. res.r += (p_t * (p_b.r - r));
  99. return res;
  100. }
  101. _ALWAYS_INLINE_ AudioFrame(float p_l, float p_r) {
  102. l = p_l;
  103. r = p_r;
  104. }
  105. _ALWAYS_INLINE_ AudioFrame(const AudioFrame &p_frame) {
  106. l = p_frame.l;
  107. r = p_frame.r;
  108. }
  109. _ALWAYS_INLINE_ void operator=(const AudioFrame &p_frame) {
  110. l = p_frame.l;
  111. r = p_frame.r;
  112. }
  113. _ALWAYS_INLINE_ operator Vector2() const {
  114. return Vector2(l, r);
  115. }
  116. _ALWAYS_INLINE_ AudioFrame(const Vector2 &p_v2) {
  117. l = p_v2.x;
  118. r = p_v2.y;
  119. }
  120. _ALWAYS_INLINE_ AudioFrame() {}
  121. };
  122. _ALWAYS_INLINE_ AudioFrame operator*(float p_scalar, const AudioFrame &p_frame) {
  123. return AudioFrame(p_frame.l * p_scalar, p_frame.r * p_scalar);
  124. }
  125. _ALWAYS_INLINE_ AudioFrame operator*(int32_t p_scalar, const AudioFrame &p_frame) {
  126. return AudioFrame(p_frame.l * p_scalar, p_frame.r * p_scalar);
  127. }
  128. _ALWAYS_INLINE_ AudioFrame operator*(int64_t p_scalar, const AudioFrame &p_frame) {
  129. return AudioFrame(p_frame.l * p_scalar, p_frame.r * p_scalar);
  130. }
  131. #endif // AUDIO_FRAME_H