Commit 67d7ea98 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'faa8245b'

* commit 'faa8245b':
  vf_lut: Constantize

Conflicts:
	libavfilter/vf_lut.c

See: d7e95ccdMerged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 7c180586 faa8245b
......@@ -128,7 +128,8 @@ static int query_formats(AVFilterContext *ctx)
LutContext *s = ctx->priv;
const enum AVPixelFormat *pix_fmts = s->is_rgb ? rgb_pix_fmts :
s->is_yuv ? yuv_pix_fmts : all_pix_fmts;
s->is_yuv ? yuv_pix_fmts :
all_pix_fmts;
ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment