aboutsummaryrefslogtreecommitdiffstats
path: root/vlc_input.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-07-22 20:37:58 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-07-22 20:37:58 +0200
commit146795d6862680b7cb5e57fc72e9e18e1d47d2d3 (patch)
tree16501a28a956c5c628617ac5a45819b523337fa0 /vlc_input.h
parent747dd3237e3a1051978022d275132aca951734a4 (diff)
downloadtoolame-dab-146795d6862680b7cb5e57fc72e9e18e1d47d2d3.tar.gz
toolame-dab-146795d6862680b7cb5e57fc72e9e18e1d47d2d3.tar.bz2
toolame-dab-146795d6862680b7cb5e57fc72e9e18e1d47d2d3.zip
Add compile-time option for libvlc input
Diffstat (limited to 'vlc_input.h')
-rw-r--r--vlc_input.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/vlc_input.h b/vlc_input.h
index fa5d82b..f2b78c6 100644
--- a/vlc_input.h
+++ b/vlc_input.h
@@ -1,6 +1,8 @@
#ifndef __VLC_INPUT_H_
#define __VLC_INPUT_H_
+# if defined(VLC_INPUT)
+
#include <stdint.h>
#include <vlc/vlc.h>
@@ -25,5 +27,6 @@ ssize_t vlc_in_read(void *buf, size_t len);
void vlc_in_write_icy(void);
-#endif
+# endif // VLC_INPUT
+#endif // __VLC_INPUT_H_