aboutsummaryrefslogtreecommitdiffstats
path: root/vlc_input.h
blob: fa5d82bddb1ecd68288b9452663ceaea9ddc1c34 (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
#ifndef __VLC_INPUT_H_
#define __VLC_INPUT_H_

#include <stdint.h>
#include <vlc/vlc.h>


// A linked list structure for the incoming buffers
struct vlc_buffer {
    uint8_t                *buf;
    size_t                  size;
    struct vlc_buffer *next;
};

// Open the VLC input
int vlc_in_prepare(
        unsigned verbosity,
        unsigned int rate,
        const char* uri,
        unsigned channels,
        const char* icy_write_file);

// Read len audio bytes into buf
ssize_t vlc_in_read(void *buf, size_t len);

void vlc_in_write_icy(void);

#endif