summaryrefslogtreecommitdiff
path: root/lib/rbcodec/test/autoconf.h
diff options
context:
space:
mode:
authorSean Bartell <wingedtachikoma@gmail.com>2011-06-17 00:49:54 -0400
committerNils Wallménius <nils@rockbox.org>2012-03-03 16:41:49 +0100
commit26fc31ae935c431ed0d2eb7786615901b4ea090d (patch)
treec8fe5a98f44ef6676d0c27bccf097ffbd3d2486c /lib/rbcodec/test/autoconf.h
parent693af46f6de65012828a621ab07573096857ab64 (diff)
downloadrockbox-26fc31ae935c431ed0d2eb7786615901b4ea090d.tar.gz
rockbox-26fc31ae935c431ed0d2eb7786615901b4ea090d.zip
Add the warble test program.
Warble uses Rockbox's codecs to play files with SDL or convert them to WAV or raw formats. It also prints metadata and supports some of the DSP effects. In the future, warble could be used to implement an automated test suite for codecs, metadata, and DSP. Change-Id: Ife1a63d2354496016277bfcbae4a9c23423ebd86 Reviewed-on: http://gerrit.rockbox.org/135 Reviewed-by: Nils Wallménius <nils@rockbox.org> Tested-by: Nils Wallménius <nils@rockbox.org>
Diffstat (limited to 'lib/rbcodec/test/autoconf.h')
-rw-r--r--lib/rbcodec/test/autoconf.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/rbcodec/test/autoconf.h b/lib/rbcodec/test/autoconf.h
new file mode 100644
index 0000000000..0908ade420
--- /dev/null
+++ b/lib/rbcodec/test/autoconf.h
@@ -0,0 +1,17 @@
1#ifndef __BUILD_AUTOCONF_H
2#define __BUILD_AUTOCONF_H
3
4#define __PCTOOL__
5#define CONFIG_CODEC SWCODEC
6#define TARGET_ID 73 /* sdlapp */
7#define MEMORYSIZE 64
8#define ROCKBOX_LITTLE_ENDIAN 1
9#define HAVE_PITCHSCREEN
10#define HAVE_SW_TONE_CONTROLS
11#define HAVE_SW_VOLUME_CONTROL
12#define VOLUME_MIN -100
13#define VOLUME_MAX 100
14#define SW_VOLUME_MIN -100
15#define SW_VOLUME_MAX 100
16
17#endif /* __BUILD_AUTOCONF_H */