aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-07-21 11:00:47 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-08-15 19:49:24 +0200
commitf66418afba4a7fcff33d6421a190a109f574b07b (patch)
tree23eee008b6250d7105d9afc57cdacbb40b530666
parent7371b0ca6fd396cb8c37e626391561c173431a79 (diff)
downloadffmpeg-f66418afba4a7fcff33d6421a190a109f574b07b.tar.gz
libavfilter: fix --enable-small
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 633aa01f728b3f67b420e9e34ef21a995578d613)
-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 c457972474..c72e6374df 100644
--- a/libavfilter/vf_lut.c
+++ b/libavfilter/vf_lut.c
@@ -345,8 +345,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_, \