diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-07-21 11:00:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-07-21 11:00:47 +0200 |
commit | 633aa01f728b3f67b420e9e34ef21a995578d613 (patch) | |
tree | a96c90f893126d4ac027e659302c338c717059b6 /libavfilter/vf_lut.c | |
parent | 7c6c4cf2fb48d7469170e1fc5d9096b95e9b7e9f (diff) | |
download | ffmpeg-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c index a1f93ffc91..bc74a9d489 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_, \ |