]> git.sesse.net Git - ffmpeg/commitdiff
libavfilter: fix --enable-small
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 21 Jul 2011 09:00:47 +0000 (11:00 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 21 Jul 2011 09:00:47 +0000 (11:00 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/vf_lut.c

index a1f93ffc917fb23bfb35e3fe53e7f005afe6677d..bc74a9d48962ce3858741ce6f4e4d1269838ce1f 100644 (file)
@@ -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_,                                         \