File: mp3info.h

package info (click to toggle)
gnomp3 0.1.7-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 488 kB
  • ctags: 342
  • sloc: ansic: 3,285; makefile: 74; awk: 33
file content (26 lines) | stat: -rw-r--r-- 467 bytes parent folder | download | duplicates (3)
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


#if 0
struct mp3info{
    char path[1024];
    int version;
    int layer;
    int frequency;
    int bitrate;
    int filesize;
    int playtime;
    int filetime;
    unsigned long header;

};
#endif

//int get_mp3_info(struct mp3info *mp3inf);
int mp3info_process_queue(gpointer data);

void mp3info_clear_queues();
void mp3info_add_to_priority_queue(char *filename);
void mp3info_add_to_queue(char *filename);
void mp3info_clear_queue();

void mp3info_start();