diff options
author | Sean Bartell <wingedtachikoma@gmail.com> | 2011-10-30 12:05:04 -0400 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2012-05-03 14:49:35 +0200 |
commit | cadb3627fcc32cec3a97183c0a1462fe0ff04755 (patch) | |
tree | ed3ec41d5231a604a7c3d368dbf8172d9ab1ea0a /lib/rbcodec/codecs/codecs.h | |
parent | 5f0cb713615c844d9133f3664333a73816bbfd17 (diff) |
Add rbcodecplatform.h and rbcodecconfig.h.
librbcodec users must provide these two files when the library is built.
rbcodecconfig.h provides configuration #defines and basic types, and
will be included by public librbcodec headers, so it must not conflict
with the user's code. rbcodecplatform.h provides various OS functions,
and will only be included by source files and private headers. This
system is intended to provide maximum flexibility for use on embedded
systems, where no operating system headers are included. Unix systems
can just copy rbcodecconfig-example.h and rbcodecplatform-unix.h with
minimal changes.
Change-Id: I350a2274d173da391fd1ca00c4202e9760d91def
Reviewed-on: http://gerrit.rockbox.org/143
Reviewed-by: Nils Wallménius <nils@rockbox.org>
Tested-by: Nils Wallménius <nils@rockbox.org>
Diffstat (limited to 'lib/rbcodec/codecs/codecs.h')
-rw-r--r-- | lib/rbcodec/codecs/codecs.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/rbcodec/codecs/codecs.h b/lib/rbcodec/codecs/codecs.h index 91ce8698ab..03167f55bf 100644 --- a/lib/rbcodec/codecs/codecs.h +++ b/lib/rbcodec/codecs/codecs.h @@ -27,11 +27,7 @@ #define NO_REDEFINES_PLEASE #endif -#include <stdbool.h> -#include <stdlib.h> -#include "strlcpy.h" -#include "config.h" -#include "system.h" +#include "rbcodecconfig.h" #include "metadata.h" #include "audio.h" #ifdef RB_PROFILE |