diff options
author | Matthias Braendli <matthias.braendli@u-blox.com> | 2015-06-18 14:00:00 +0200 |
---|---|---|
committer | Matthias Braendli <matthias.braendli@u-blox.com> | 2015-06-18 14:00:00 +0200 |
commit | 1c31d2937cd67c0e5e2f9cbc9dc48f5ae7d893ea (patch) | |
tree | a6db52c86c018d5f587bd1de5858e32f27b51f15 /vlc_input.h | |
parent | 1e2a3730e9833f4bac850f89e552f023b7eec3f1 (diff) | |
download | toolame-dab-1c31d2937cd67c0e5e2f9cbc9dc48f5ae7d893ea.tar.gz toolame-dab-1c31d2937cd67c0e5e2f9cbc9dc48f5ae7d893ea.tar.bz2 toolame-dab-1c31d2937cd67c0e5e2f9cbc9dc48f5ae7d893ea.zip |
Add write ICY text into file
Diffstat (limited to 'vlc_input.h')
-rw-r--r-- | vlc_input.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vlc_input.h b/vlc_input.h index fbdd705..fa5d82b 100644 --- a/vlc_input.h +++ b/vlc_input.h @@ -17,10 +17,13 @@ int vlc_in_prepare( unsigned verbosity, unsigned int rate, const char* uri, - unsigned channels); + 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 |