diff options
Diffstat (limited to 'src/VLCInput.h')
-rw-r--r-- | src/VLCInput.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/VLCInput.h b/src/VLCInput.h index ffa9258..3467525 100644 --- a/src/VLCInput.h +++ b/src/VLCInput.h @@ -25,6 +25,7 @@ #include <cstdio> #include <string> +#include <sstream> #include <vector> #include <deque> #include <thread> @@ -36,6 +37,10 @@ #include "SampleQueue.h" #include "common.h" +extern "C" { +#include "utils.h" +} + /* Common functionality for the direct libvlc input and the * threaded libvlc input */ @@ -67,7 +72,7 @@ class VLCInput /* Write the last received ICY-Text to the * file. */ - void write_icy_text(const std::string& filename); + void write_icy_text(const std::string& filename, bool dl_plus); // Callbacks for VLC |