1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* rockbox-metadata configuration header — replaces the firmware target
* config. Modeled on lib/rbcodec/rbcodecconfig-example.h (used by the
* warble standalone test player). */
/* MEMORYSIZE > 8 selects the full-size tag buffers in metadata.h
* (ID3V2_BUF_SIZE 1800 / ID3V2_MAX_ITEM_SIZE 500). */
/* Parse embedded album art positions (ID3 APIC, FLAC PICTURE, MP4 covr). */
/* vtx.c (ZX Spectrum Vortex Tracker) uses floating point. */
/* {,u}int{8,16,32,64}_t, intptr_t, uintptr_t */
/* bool, true, false */
/* NULL, offsetof, size_t */
/* ssize_t, off_t, read, lseek */
/* limits */
/* Firmware maps filesystem calls through FS_PREFIX ("sim_" / "app_"
* wrappers on hosted targets). Standalone we use plain POSIX names. */
/* firmware/common/filefuncs — implemented via fstat in rbmeta_shim.c */
off_t ;
/* Some parsers (au.c, …) use DEBUGF without including debug.h; on
* firmware builds the target config.h provides it. logf is NOT defined
* here — <math.h> declares float logf(float) and a force-included macro
* would mangle it; the shim logf.h covers the files that use logging. */
/* __ASSEMBLER__ */
/* RBCODECCONFIG_H_INCLUDED */