comparison src/crossfade/timing.h @ 3059:2e241e90494a

Import work in progress xmms-crossfade rewrite.
author William Pitcock <nenolod@atheme.org>
date Fri, 24 Apr 2009 05:57:35 -0500
parents
children
comparison
equal deleted inserted replaced
3058:2e649bf16ebc 3059:2e241e90494a
1 /* quantaudio parameters */
2 typedef struct
3 {
4 int RMS;
5 float mix_in;
6 float mix_out;
7 float length;
8 }
9 quantaudio_t;
10
11 /* id3 stuff is taken from the id3 GPL program */
12 typedef struct
13 {
14 char comment[1024];
15 int track;
16 }
17 id3_t;
18
19 int get_timing_comment(char *filename, quantaudio_t *qa);
20 int get_id3(char *filename, id3_t *id3);