[MPlayer-cvslog] r37712 - trunk/libmpcodecs/vf_geq.c

reimar subversion at mplayerhq.hu
Sat Feb 13 18:57:54 CET 2016


Author: reimar
Date: Sat Feb 13 18:57:53 2016
New Revision: 37712

Log:
vf_geq.c: Add some missing const to tables.

Modified:
   trunk/libmpcodecs/vf_geq.c

Modified: trunk/libmpcodecs/vf_geq.c
==============================================================================
--- trunk/libmpcodecs/vf_geq.c	Sat Feb 13 18:52:48 2016	(r37711)
+++ trunk/libmpcodecs/vf_geq.c	Sat Feb 13 18:57:53 2016	(r37712)
@@ -150,7 +150,7 @@ static int vf_open(vf_instance_t *vf, ch
     if (!eq[2][0]) strncpy(eq[2], eq[1], sizeof(eq[0])-1);
 
     for(plane=0; plane<3; plane++){
-        static const char *const_names[]={
+        static const char * const const_names[]={
             "PI",
             "E",
             "X",
@@ -162,7 +162,7 @@ static int vf_open(vf_instance_t *vf, ch
             "SH",
             NULL
         };
-        static const char *func2_names[]={
+        static const char * const func2_names[]={
             "lum",
             "cb",
             "cr",


More information about the MPlayer-cvslog mailing list