diff options
Diffstat (limited to 'src/VLCInput.h')
-rw-r--r-- | src/VLCInput.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/VLCInput.h b/src/VLCInput.h index e387044..f9cf783 100644 --- a/src/VLCInput.h +++ b/src/VLCInput.h @@ -41,10 +41,11 @@ class VLCInput public: VLCInput(const std::string& uri, int rate, + unsigned channels, unsigned verbosity) : m_uri(uri), m_verbosity(verbosity), - m_channels(2), + m_channels(channels), m_rate(rate), m_vlc(NULL) { } |