summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/rbcodec/test/SOURCES49
-rw-r--r--lib/rbcodec/test/warble.c4
-rw-r--r--lib/rbcodec/test/warble.make37
3 files changed, 90 insertions, 0 deletions
diff --git a/lib/rbcodec/test/SOURCES b/lib/rbcodec/test/SOURCES
new file mode 100644
index 0000000000..467115e0d6
--- /dev/null
+++ b/lib/rbcodec/test/SOURCES
@@ -0,0 +1,49 @@
1warble.c
2../../../apps/metadata.c
3../../../apps/replaygain.c
4../../../firmware/buflib.c
5../../../firmware/core_alloc.c
6../../../firmware/common/strlcpy.c
7../../../firmware/common/unicode.c
8../../../firmware/common/structec.c
9../../../apps/mp3data.c
10../../../apps/fixedpoint.c
11../../../uisimulator/common/io.c
12../../../apps/compressor.c
13../../../apps/dsp.c
14../../../apps/eq.c
15../../../apps/tdspeed.c
16../../../apps/metadata/a52.c
17../../../apps/metadata/adx.c
18../../../apps/metadata/aiff.c
19../../../apps/metadata/ape.c
20../../../apps/metadata/asap.c
21../../../apps/metadata/asf.c
22../../../apps/metadata/au.c
23../../../apps/metadata/ay.c
24../../../apps/metadata/flac.c
25../../../apps/metadata/gbs.c
26../../../apps/metadata/hes.c
27../../../apps/metadata/id3tags.c
28../../../apps/metadata/kss.c
29../../../apps/metadata/metadata_common.c
30../../../apps/metadata/mod.c
31../../../apps/metadata/monkeys.c
32../../../apps/metadata/mp3.c
33../../../apps/metadata/mp4.c
34../../../apps/metadata/mpc.c
35../../../apps/metadata/nsf.c
36../../../apps/metadata/ogg.c
37../../../apps/metadata/oma.c
38../../../apps/metadata/rm.c
39../../../apps/metadata/sgc.c
40../../../apps/metadata/sid.c
41../../../apps/metadata/smaf.c
42../../../apps/metadata/spc.c
43../../../apps/metadata/tta.c
44../../../apps/metadata/vgm.c
45../../../apps/metadata/vorbis.c
46../../../apps/metadata/vox.c
47../../../apps/metadata/wave.c
48../../../apps/metadata/wavpack.c
49
diff --git a/lib/rbcodec/test/warble.c b/lib/rbcodec/test/warble.c
index 2cba6c0d59..e3d9456f4d 100644
--- a/lib/rbcodec/test/warble.c
+++ b/lib/rbcodec/test/warble.c
@@ -358,9 +358,11 @@ static void perform_config(void)
358 codec_action_param = atoi(val); 358 codec_action_param = atoi(val);
359 } else if (!strncmp(name, "tempo=", 6)) { 359 } else if (!strncmp(name, "tempo=", 6)) {
360 dsp_set_timestretch(atof(val) * PITCH_SPEED_100); 360 dsp_set_timestretch(atof(val) * PITCH_SPEED_100);
361#ifdef HAVE_SW_VOLUME_CONTROL
361 } else if (!strncmp(name, "vol=", 4)) { 362 } else if (!strncmp(name, "vol=", 4)) {
362 global_settings.volume = atoi(val); 363 global_settings.volume = atoi(val);
363 dsp_callback(DSP_CALLBACK_SET_SW_VOLUME, 0); 364 dsp_callback(DSP_CALLBACK_SET_SW_VOLUME, 0);
365#endif
364 } else { 366 } else {
365 fprintf(stderr, "error: unrecognized config \"%.*s\"\n", 367 fprintf(stderr, "error: unrecognized config \"%.*s\"\n",
366 (int)(eq - name), name); 368 (int)(eq - name), name);
@@ -775,7 +777,9 @@ static void print_help(const char *progname)
775 " rate=<n> Multiply rate by <n> [1.0]\n" 777 " rate=<n> Multiply rate by <n> [1.0]\n"
776 " seek=<n> Seek <n> ms into the file\n" 778 " seek=<n> Seek <n> ms into the file\n"
777 " tempo=<n> Timestretch by <n> [1.0]\n" 779 " tempo=<n> Timestretch by <n> [1.0]\n"
780#ifdef HAVE_SW_VOLUME_CONTROL
778 " vol=<n> Set volume to <n> dB [0]\n" 781 " vol=<n> Set volume to <n> dB [0]\n"
782#endif
779 " wait=<n> Don't apply remaining configuration until\n" 783 " wait=<n> Don't apply remaining configuration until\n"
780 " <n> total samples have output\n" 784 " <n> total samples have output\n"
781 "\n" 785 "\n"
diff --git a/lib/rbcodec/test/warble.make b/lib/rbcodec/test/warble.make
new file mode 100644
index 0000000000..0687e05620
--- /dev/null
+++ b/lib/rbcodec/test/warble.make
@@ -0,0 +1,37 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9
10
11include $(ROOTDIR)/tools/functions.make
12include $(ROOTDIR)/apps/codecs/codecs.make
13
14FLAGS=-g -D__PCTOOL__ $(TARGET) -Wall
15
16SRC= $(call preprocess, $(ROOTDIR)/lib/rbcodec/test/SOURCES)
17
18INCLUDES += -I$(ROOTDIR)/apps -I$(ROOTDIR)/apps/codecs -I$(ROOTDIR)/apps/codecs/lib \
19 -I$(ROOTDIR)/apps/gui -I$(ROOTDIR)/apps/metadata
20INCLUDES += -I$(ROOTDIR)/firmware/export -I$(ROOTDIR)/firmware/include \
21 -I$(ROOTDIR)/firmware/target/hosted \
22 -I$(ROOTDIR)/firmware/target/hosted/sdl
23
24GCCOPTS+=-D__PCTOOL__ -g -std=gnu99 `$(SDLCONFIG) --cflags` -DCODECDIR="\"$(CODECDIR)\""
25
26LIBS=`$(SDLCONFIG) --libs` -lc
27ifneq ($(findstring MINGW,$(shell uname)),MINGW)
28LIBS += -ldl
29endif
30
31.SECONDEXPANSION: # $$(OBJ) is not populated until after this
32
33$(BUILDDIR)/$(BINARY): $(CODECS)
34
35$(BUILDDIR)/$(BINARY): $$(OBJ)
36 @echo LD $(BINARY)
37 $(SILENT)$(HOSTCC) $(SIMFLAGS) $(LIBS) -o $@ $+