summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2014-08-17 13:01:39 +0200
committerLars-Dominik Braun <lars@6xq.net>2014-08-17 13:01:39 +0200
commit4f36797fb368cc30a648ed0a313b6f4ad6cb3927 (patch)
tree0009e49ab009f244e428026f75042a2b49bb784c
parent94e0cb0fbabd0ed3da7dd90808b5c7385d9e419b (diff)
downloadpianobar-4f36797fb368cc30a648ed0a313b6f4ad6cb3927.tar.gz
pianobar-4f36797fb368cc30a648ed0a313b6f4ad6cb3927.tar.bz2
pianobar-4f36797fb368cc30a648ed0a313b6f4ad6cb3927.zip
Fix volume control with ffmpeg 2.3
-rw-r--r--src/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index fb8a041..a4f75cb 100644
--- a/src/config.h
+++ b/src/config.h
@@ -17,7 +17,7 @@
#endif
/* does graph_send_command exist (ffmpeg >=2.2) */
-#if LIBAVFILTER_VERSION_MAJOR == 4 && \
+#if LIBAVFILTER_VERSION_MAJOR >= 4 && \
LIBAVFILTER_VERSION_MICRO >= 100
#define HAVE_AVFILTER_GRAPH_SEND_COMMAND
#endif