summaryrefslogtreecommitdiff
path: root/codec.h
blob: ffb4e8f575c8833ec5c14f3b7ea0d26718440ef0 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef __CODEC_H
#define __CODEC_H

#include <stdint.h>

typedef struct {
    int bitsPerSample;
    int channels;
    int samplesPerSecond;
    float duration;
    float position;
} fileinfo_t;

typedef struct codec_s {
    int (*init) (const char *fname, int track, float start, float end);
    void (*free) (void);
    // player is responsible for starting next song if -1 is returned
    int (*read) (char *bytes, int size);
    int (*seek) (float time);
    int (*add) (const char *fname);
    const char ** (*getexts) (void);
    fileinfo_t info;
} codec_t;

codec_t *get_codec_for_file (const char *fname);

void
codec_init_locking (void);

void
codec_free_locking (void);

void
codec_lock (void);

void
codec_unlock (void);

#endif	// __CODEC_H