diff options
| author | Lars-Dominik Braun <lars@6xq.net> | 2014-08-17 13:01:39 +0200 | 
|---|---|---|
| committer | Lars-Dominik Braun <lars@6xq.net> | 2014-08-17 13:01:39 +0200 | 
| commit | 4f36797fb368cc30a648ed0a313b6f4ad6cb3927 (patch) | |
| tree | 0009e49ab009f244e428026f75042a2b49bb784c | |
| parent | 94e0cb0fbabd0ed3da7dd90808b5c7385d9e419b (diff) | |
| download | pianobar-4f36797fb368cc30a648ed0a313b6f4ad6cb3927.tar.gz pianobar-4f36797fb368cc30a648ed0a313b6f4ad6cb3927.tar.bz2 pianobar-4f36797fb368cc30a648ed0a313b6f4ad6cb3927.zip | |
Fix volume control with ffmpeg 2.3
| -rw-r--r-- | src/config.h | 2 | 
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 | 
