Mercurial > audlegacy-plugins
comparison src/cdaudio-ng/cdaudio-ng.h @ 1189:af5bd4592100 trunk
Added cdaudio-ng.h; added a configure dialog
author | zither@litestep.network |
---|---|
date | Wed, 20 Jun 2007 22:27:48 +0300 |
parents | |
children | 7bb2692b3be9 |
comparison
equal
deleted
inserted
replaced
1188:22a470857579 | 1189:af5bd4592100 |
---|---|
1 | |
2 #ifndef CDAUDIO_NG_H | |
3 #define CDAUDIO_NG_H | |
4 | |
5 | |
6 #define DEF_STRING_LEN 256 | |
7 #define CDDA_DEFAULT "cdda://default" | |
8 #define CDDA_DAE_FRAMES 8 | |
9 | |
10 | |
11 typedef struct { | |
12 | |
13 char performer[DEF_STRING_LEN]; | |
14 char name[DEF_STRING_LEN]; | |
15 char genre[DEF_STRING_LEN]; | |
16 lsn_t startlsn; | |
17 lsn_t endlsn; | |
18 | |
19 } trackinfo_t; | |
20 | |
21 typedef struct { | |
22 | |
23 lsn_t startlsn; | |
24 lsn_t endlsn; | |
25 lsn_t currlsn; | |
26 lsn_t seektime; /* in miliseconds */ | |
27 InputPlayback *pplayback; | |
28 GThread *thread; | |
29 | |
30 } dae_params_t; | |
31 | |
32 | |
33 #endif // CDAUDIO_NG_H |