summaryrefslogtreecommitdiff
path: root/libavfilter/vf_lut.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-11-05 14:49:52 +0100
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-11-05 15:37:01 +0100
commitd78473334e9fdf991e354c11e3f7649449ea8791 (patch)
tree3aa35b26fa111e8648ef17b16e6f0858ff84d305 /libavfilter/vf_lut.c
parenta010b56ebcaa9933f9febcdf7809b9b437b80276 (diff)
Add const to static arrays where it was forgotten.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavfilter/vf_lut.c')
-rw-r--r--libavfilter/vf_lut.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c
index 211a294e43..a7f2f7b043 100644
--- a/libavfilter/vf_lut.c
+++ b/libavfilter/vf_lut.c
@@ -30,7 +30,7 @@
#include "avfilter.h"
#include "internal.h"
-static const char *var_names[] = {
+static const char * const var_names[] = {
"w", ///< width of the input video
"h", ///< height of the input video
"val", ///< input value for the pixel
@@ -380,4 +380,4 @@ static int negate_init(AVFilterContext *ctx, const char *args, void *opaque)
DEFINE_LUT_FILTER(negate, "Negate input video.", negate_init);
-#endif \ No newline at end of file
+#endif