Commit e1f5ed4f authored by David Reid's avatar David Reid

Rename some more test source files.

parent ed5cda30
#include "../test_common/ma_test_common.c" #include "../common/common.c"
ma_result init_data_converter(ma_uint32 rateIn, ma_uint32 rateOut, ma_resample_algorithm algorithm, ma_data_converter* pDataConverter) ma_result init_data_converter(ma_uint32 rateIn, ma_uint32 rateOut, ma_resample_algorithm algorithm, ma_data_converter* pDataConverter)
{ {
......
...@@ -41,7 +41,7 @@ will receive the captured audio. ...@@ -41,7 +41,7 @@ will receive the captured audio.
If multiple backends are specified, the priority will be based on the order in which you specify them. If multiple waveform or noise types If multiple backends are specified, the priority will be based on the order in which you specify them. If multiple waveform or noise types
are specified the last one on the command line will have priority. are specified the last one on the command line will have priority.
*/ */
#include "../test_common/ma_test_common.c" #include "../common/common.c"
#ifndef AUTO_CLOSE_TIME_IN_MILLISECONDS #ifndef AUTO_CLOSE_TIME_IN_MILLISECONDS
#define AUTO_CLOSE_TIME_IN_MILLISECONDS 5000 #define AUTO_CLOSE_TIME_IN_MILLISECONDS 5000
......
#define MA_DEBUG_OUTPUT #define MA_DEBUG_OUTPUT
#define MA_NO_DECODING #define MA_NO_DECODING
#define MA_NO_ENCODING #define MA_NO_ENCODING
#define MINIAUDIO_IMPLEMENTATION #include "../../miniaudio.c"
#include "../../miniaudio.h"
#include <stdio.h> #include <stdio.h>
......
#include "../test_common/ma_test_common.c" #include "../common/common.c"
ma_result filtering_init_decoder_and_encoder(const char* pInputFilePath, const char* pOutputFilePath, ma_format format, ma_uint32 channels, ma_uint32 sampleRate, ma_decoder* pDecoder, ma_encoder* pEncoder) ma_result filtering_init_decoder_and_encoder(const char* pInputFilePath, const char* pOutputFilePath, ma_format format, ma_uint32 channels, ma_uint32 sampleRate, ma_decoder* pDecoder, ma_encoder* pEncoder)
{ {
...@@ -24,14 +24,14 @@ ma_result filtering_init_decoder_and_encoder(const char* pInputFilePath, const c ...@@ -24,14 +24,14 @@ ma_result filtering_init_decoder_and_encoder(const char* pInputFilePath, const c
return MA_SUCCESS; return MA_SUCCESS;
} }
#include "ma_test_filtering_dithering.c" #include "filtering_dithering.c"
#include "ma_test_filtering_lpf.c" #include "filtering_lpf.c"
#include "ma_test_filtering_hpf.c" #include "filtering_hpf.c"
#include "ma_test_filtering_bpf.c" #include "filtering_bpf.c"
#include "ma_test_filtering_notch.c" #include "filtering_notch.c"
#include "ma_test_filtering_peak.c" #include "filtering_peak.c"
#include "ma_test_filtering_loshelf.c" #include "filtering_loshelf.c"
#include "ma_test_filtering_hishelf.c" #include "filtering_hishelf.c"
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
......
#define MA_NO_DEVICE_IO #define MA_NO_DEVICE_IO
#include "../test_common/ma_test_common.c" #include "../common/common.c"
#include "ma_test_generation_noise.c" #include "generation_noise.c"
#include "ma_test_generation_waveform.c" #include "generation_waveform.c"
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment