aboutsummaryrefslogtreecommitdiffstats
path: root/vlc_input.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-04-10 16:50:16 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-04-10 16:50:16 +0200
commit84f66b075a9565057dd27906dfbe91cc95d37a70 (patch)
treea88c42cc94ce67ed7d56dd0da7d7a5cc61c080df /vlc_input.h
parentde30b580cc7ad6a81429e3e5815b54916819cd50 (diff)
downloadtoolame-dab-84f66b075a9565057dd27906dfbe91cc95d37a70.tar.gz
toolame-dab-84f66b075a9565057dd27906dfbe91cc95d37a70.tar.bz2
toolame-dab-84f66b075a9565057dd27906dfbe91cc95d37a70.zip
VLC input: add support for mono
Diffstat (limited to 'vlc_input.h')
-rw-r--r--vlc_input.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/vlc_input.h b/vlc_input.h
index 1614ae3..aaf95f7 100644
--- a/vlc_input.h
+++ b/vlc_input.h
@@ -34,7 +34,11 @@ void handleStream(
int64_t pts);
// Open the VLC input
-int vlc_in_prepare(unsigned verbosity, unsigned int rate, const char* uri);
+int vlc_in_prepare(
+ unsigned verbosity,
+ unsigned int rate,
+ const char* uri,
+ unsigned channels);
// Read len audio bytes into buf
ssize_t vlc_in_read(void *buf, size_t len);