summaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_lut.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-07-21 11:00:47 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-07-21 11:00:47 +0200
commit633aa01f728b3f67b420e9e34ef21a995578d613 (patch)
treea96c90f893126d4ac027e659302c338c717059b6 /libavfilter/vf_lut.c
parent7c6c4cf2fb48d7469170e1fc5d9096b95e9b7e9f (diff)
downloadffmpeg-streaming-633aa01f728b3f67b420e9e34ef21a995578d613.zip
ffmpeg-streaming-633aa01f728b3f67b420e9e34ef21a995578d613.tar.gz
libavfilter: fix --enable-small
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_lut.c')
-rw-r--r--libavfilter/vf_lut.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c
index a1f93ff..bc74a9d 100644
--- a/libavfilter/vf_lut.c
+++ b/libavfilter/vf_lut.c
@@ -341,8 +341,8 @@ static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
#define DEFINE_LUT_FILTER(name_, description_, init_) \
AVFilter avfilter_vf_##name_ = { \
- .name = NULL_IF_CONFIG_SMALL(#name_), \
- .description = description_, \
+ .name = #name_, \
+ .description = NULL_IF_CONFIG_SMALL(description_), \
.priv_size = sizeof(LutContext), \
\
.init = init_, \
OpenPOWER on IntegriCloud