diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-02-15 04:34:28 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-02-15 04:34:28 +0100 |
commit | 5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1 (patch) | |
tree | b1bddbfac8bd69c733faf734803e7f1842285e22 /libtoolame-dab/vlc_input.h | |
parent | ba346d2469facf500cbcaa9cf9117ce04ea0b6da (diff) | |
download | ODR-AudioEnc-5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1.tar.gz ODR-AudioEnc-5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1.tar.bz2 ODR-AudioEnc-5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1.zip |
Remove useless libtoolame-dab files
Diffstat (limited to 'libtoolame-dab/vlc_input.h')
-rw-r--r-- | libtoolame-dab/vlc_input.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/libtoolame-dab/vlc_input.h b/libtoolame-dab/vlc_input.h deleted file mode 100644 index a2ecefa..0000000 --- a/libtoolame-dab/vlc_input.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef __VLC_INPUT_H_ -#define __VLC_INPUT_H_ - -# if defined(VLC_INPUT) - -#include <stdint.h> -#include <stddef.h> -#include <sys/types.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 // VLC_INPUT -#endif // __VLC_INPUT_H_ - |