diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-05 15:20:18 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-05 15:37:02 +0100 |
commit | d7e95ccd9ff3e55e194582a105421fa308a83ef1 (patch) | |
tree | c98f10c438f7bd8718ca0ad93b4652e5aecec149 | |
parent | 8541422506528d77b6895dc736370409d9b32052 (diff) | |
download | ffmpeg-d7e95ccd9ff3e55e194582a105421fa308a83ef1.tar.gz |
Make PIX_FMT format list arrays const.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-rw-r--r-- | libavfilter/vf_lut.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c index a7f2f7b043..ff5bfd1685 100644 --- a/libavfilter/vf_lut.c +++ b/libavfilter/vf_lut.c @@ -141,16 +141,16 @@ static av_cold void uninit(AVFilterContext *ctx) PIX_FMT_ABGR, PIX_FMT_BGRA, \ PIX_FMT_RGB24, PIX_FMT_BGR24 -static enum PixelFormat yuv_pix_fmts[] = { YUV_FORMATS, PIX_FMT_NONE }; -static enum PixelFormat rgb_pix_fmts[] = { RGB_FORMATS, PIX_FMT_NONE }; -static enum PixelFormat all_pix_fmts[] = { RGB_FORMATS, YUV_FORMATS, PIX_FMT_NONE }; +static const enum PixelFormat yuv_pix_fmts[] = { YUV_FORMATS, PIX_FMT_NONE }; +static const enum PixelFormat rgb_pix_fmts[] = { RGB_FORMATS, PIX_FMT_NONE }; +static const enum PixelFormat all_pix_fmts[] = { RGB_FORMATS, YUV_FORMATS, PIX_FMT_NONE }; static int query_formats(AVFilterContext *ctx) { LutContext *lut = ctx->priv; - enum PixelFormat *pix_fmts = lut->is_rgb ? rgb_pix_fmts : - lut->is_yuv ? yuv_pix_fmts : all_pix_fmts; + const enum PixelFormat *pix_fmts = lut->is_rgb ? rgb_pix_fmts : + lut->is_yuv ? yuv_pix_fmts : all_pix_fmts; avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts)); return 0; |