summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/metadata.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/metadata/metadata.h')
-rw-r--r--lib/rbcodec/metadata/metadata.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/rbcodec/metadata/metadata.h b/lib/rbcodec/metadata/metadata.h
index 5c78eae9d4..fc9c1d062c 100644
--- a/lib/rbcodec/metadata/metadata.h
+++ b/lib/rbcodec/metadata/metadata.h
@@ -83,6 +83,9 @@ enum
83 AFMT_MPC_SV8, /* Musepack SV8 */ 83 AFMT_MPC_SV8, /* Musepack SV8 */
84 AFMT_MP4_AAC_HE, /* Advanced Audio Coding (AAC-HE) in M4A container */ 84 AFMT_MP4_AAC_HE, /* Advanced Audio Coding (AAC-HE) in M4A container */
85 AFMT_AY, /* AY (ZX Spectrum, Amstrad CPC Sound Format) */ 85 AFMT_AY, /* AY (ZX Spectrum, Amstrad CPC Sound Format) */
86#ifdef HAVE_FPU
87 AFMT_VTX, /* VTX (ZX Spectrum Sound Format) */
88#endif
86 AFMT_GBS, /* GBS (Game Boy Sound Format) */ 89 AFMT_GBS, /* GBS (Game Boy Sound Format) */
87 AFMT_HES, /* HES (Hudson Entertainment System Sound Format) */ 90 AFMT_HES, /* HES (Hudson Entertainment System Sound Format) */
88 AFMT_SGC, /* SGC (Sega Master System, Game Gear, Coleco Vision Sound Format) */ 91 AFMT_SGC, /* SGC (Sega Master System, Game Gear, Coleco Vision Sound Format) */
@@ -140,7 +143,7 @@ enum rec_format_indexes
140 REC_FORMAT_CFG_NUM_BITS = 2 143 REC_FORMAT_CFG_NUM_BITS = 2
141}; 144};
142 145
143#define REC_FORMAT_CFG_VAL_LIST "wave,aiff,wvpk,mpa3" 146#define REC_FORMAT_CFG_VAL_LIST "wave,aiff,wvpk,mpa3"
144 147
145/* get REC_FORMAT_* corresponding AFMT_* */ 148/* get REC_FORMAT_* corresponding AFMT_* */
146extern const int rec_format_afmt[REC_NUM_FORMATS]; 149extern const int rec_format_afmt[REC_NUM_FORMATS];
@@ -232,7 +235,7 @@ struct mp3entry {
232 char* comment; 235 char* comment;
233 char* albumartist; 236 char* albumartist;
234 char* grouping; 237 char* grouping;
235 int discnum; 238 int discnum;
236 int tracknum; 239 int tracknum;
237 int layer; 240 int layer;
238 int year; 241 int year;
@@ -283,7 +286,7 @@ struct mp3entry {
283 286
284#ifdef HAVE_TAGCACHE 287#ifdef HAVE_TAGCACHE
285 unsigned char autoresumable; /* caches result of autoresumable() */ 288 unsigned char autoresumable; /* caches result of autoresumable() */
286 289
287 /* runtime database fields */ 290 /* runtime database fields */
288 long tagcache_idx; /* 0=invalid, otherwise idx+1 */ 291 long tagcache_idx; /* 0=invalid, otherwise idx+1 */
289 int rating; 292 int rating;
@@ -292,7 +295,7 @@ struct mp3entry {
292 long lastplayed; 295 long lastplayed;
293 long playtime; 296 long playtime;
294#endif 297#endif
295 298
296 /* replaygain support */ 299 /* replaygain support */
297 long track_level; /* holds the level in dB * (1<<FP_BITS) */ 300 long track_level; /* holds the level in dB * (1<<FP_BITS) */
298 long album_level; 301 long album_level;
@@ -329,5 +332,3 @@ bool rbcodec_format_is_atomic(int afmt);
329bool format_buffers_with_offset(int afmt); 332bool format_buffers_with_offset(int afmt);
330 333
331#endif 334#endif
332
333