view 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
line wrap: on
line source

/* quantaudio parameters */
typedef struct
{
	int RMS;
	float mix_in;
	float mix_out;
	float length;
}
quantaudio_t;

/* id3 stuff is taken from the id3 GPL program */
typedef struct
{
	char comment[1024];
	int track;
}
id3_t;

int get_timing_comment(char *filename, quantaudio_t *qa);
int get_id3(char *filename, id3_t *id3);