Miku AuahDark пре 3 година
родитељ
комит
bed7d5c826

+ 2 - 0
love/src/jni/oboe/src/flowgraph/resampler/PolyphaseResampler.cpp

@@ -13,6 +13,8 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+ 
+#include <cassert>
 
 #include "IntegerRatio.h"
 #include "PolyphaseResampler.h"

+ 2 - 0
love/src/jni/oboe/src/flowgraph/resampler/PolyphaseResamplerMono.cpp

@@ -14,6 +14,8 @@
  * limitations under the License.
  */
 
+#include <cassert>
+
 #include "PolyphaseResamplerMono.h"
 
 using namespace resampler;

+ 2 - 0
love/src/jni/oboe/src/flowgraph/resampler/PolyphaseResamplerStereo.cpp

@@ -14,6 +14,8 @@
  * limitations under the License.
  */
 
+#include <cassert>
+
 #include "PolyphaseResamplerStereo.h"
 
 using namespace resampler;

+ 1 - 0
love/src/jni/oboe/src/flowgraph/resampler/SincResampler.cpp

@@ -14,6 +14,7 @@
  * limitations under the License.
  */
 
+#include <cassert>
 #include <math.h>
 #include "SincResampler.h"
 

+ 1 - 0
love/src/jni/oboe/src/flowgraph/resampler/SincResamplerStereo.cpp

@@ -14,6 +14,7 @@
  * limitations under the License.
  */
 
+#include <cassert>
 #include <math.h>
 
 #include "SincResamplerStereo.h"