Browse Source

libavfilter: fix --enable-small

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 633aa01f72)
tags/n0.7.4
Michael Niedermayer Carl Eugen Hoyos 14 years ago
parent
commit
f20f79307b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vf_lut.c

+ 2
- 2
libavfilter/vf_lut.c View File

@@ -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_, \


Loading…
Cancel
Save