diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-05-16 19:16:50 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-05-16 19:16:50 +0200 |
commit | 5605108f4dca9da70b5273243c4f6f11623283b7 (patch) | |
tree | 86bd2cb48ad11c68e00bacb4dd2ae4a9b4d1aed8 | |
parent | 3fefaeaa0b85a183a1266b97b37315a7815e6dbb (diff) | |
download | ffmpeg-streaming-5605108f4dca9da70b5273243c4f6f11623283b7.zip ffmpeg-streaming-5605108f4dca9da70b5273243c4f6f11623283b7.tar.gz |
avfilter/af_bs2b: add missing flag for options
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/af_bs2b.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_bs2b.c b/libavfilter/af_bs2b.c index 54d52c5..531a27b 100644 --- a/libavfilter/af_bs2b.c +++ b/libavfilter/af_bs2b.c @@ -45,7 +45,7 @@ typedef struct Bs2bContext { } Bs2bContext; #define OFFSET(x) offsetof(Bs2bContext, x) -#define A AV_OPT_FLAG_AUDIO_PARAM +#define A AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM static const AVOption bs2b_options[] = { { "profile", "Apply a pre-defined crossfeed level", |