rockbox/lib/rbcodec/test/autoconf.h
Sean Bartell 26fc31ae93 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>
2012-03-03 16:41:49 +01:00

17 lines
410 B
C

#ifndef __BUILD_AUTOCONF_H
#define __BUILD_AUTOCONF_H
#define __PCTOOL__
#define CONFIG_CODEC SWCODEC
#define TARGET_ID 73 /* sdlapp */
#define MEMORYSIZE 64
#define ROCKBOX_LITTLE_ENDIAN 1
#define HAVE_PITCHSCREEN
#define HAVE_SW_TONE_CONTROLS
#define HAVE_SW_VOLUME_CONTROL
#define VOLUME_MIN -100
#define VOLUME_MAX 100
#define SW_VOLUME_MIN -100
#define SW_VOLUME_MAX 100
#endif /* __BUILD_AUTOCONF_H */