Add const to static arrays where it was forgotten.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
Reimar Döffinger
2011-11-05 14:49:52 +01:00
parent a010b56ebc
commit d78473334e
12 changed files with 13 additions and 13 deletions

View File

@ -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
#endif