changeset 28922:9dd905e52639

Remove obsolete extra elements from opt_t struct initialization. Fixes a bunch of 'excess elements in struct initializer' warnings.
author diego
date Sun, 15 Mar 2009 10:03:09 +0000
parents 62f0032e736a
children 7dd48949e3d2
files libvo/vo_aa.c libvo/vo_gif89a.c libvo/vo_jpeg.c libvo/vo_md5sum.c libvo/vo_png.c libvo/vo_pnm.c libvo/vo_sdl.c libvo/vo_zr2.c
diffstat 8 files changed, 37 insertions(+), 37 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_aa.c	Sun Mar 15 10:01:02 2009 +0000
+++ b/libvo/vo_aa.c	Sun Mar 15 10:03:09 2009 +0000
@@ -579,9 +579,9 @@
          *helpmsg = NULL;
     int pseudoargc, displayhelp = 0, *booleans;
     const opt_t extra_opts[] = {
-            {"osdcolor", OPT_ARG_MSTRZ, &osdcolor,    NULL, 0},
-            {"subcolor", OPT_ARG_MSTRZ, &subcolor,    NULL, 0},
-            {"help",     OPT_ARG_BOOL,  &displayhelp, NULL, 0} };
+            {"osdcolor", OPT_ARG_MSTRZ, &osdcolor,    NULL},
+            {"subcolor", OPT_ARG_MSTRZ, &subcolor,    NULL},
+            {"help",     OPT_ARG_BOOL,  &displayhelp, NULL} };
     opt_t *subopts = NULL, *p;
     char * const strings_list[] = {"-driver", "-kbddriver", "-mousedriver", "-font",
         "-width", "-height", "-minwidth", "-minheight", "-maxwidth",
--- a/libvo/vo_gif89a.c	Sun Mar 15 10:01:02 2009 +0000
+++ b/libvo/vo_gif89a.c	Sun Mar 15 10:03:09 2009 +0000
@@ -105,9 +105,9 @@
 #define DEFAULT_FILE "out.gif"
 
 static const opt_t subopts[] = {
-  {"output",       OPT_ARG_MSTRZ, &gif_filename, NULL, 0},
-  {"fps",          OPT_ARG_FLOAT, &target_fps,   NULL, 0},
-  {NULL, 0, NULL, NULL, 0}
+  {"output",       OPT_ARG_MSTRZ, &gif_filename, NULL},
+  {"fps",          OPT_ARG_FLOAT, &target_fps,   NULL},
+  {NULL, 0, NULL, NULL}
 };
 
 static int preinit(const char *arg)
--- a/libvo/vo_jpeg.c	Sun Mar 15 10:01:02 2009 +0000
+++ b/libvo/vo_jpeg.c	Sun Mar 15 10:03:09 2009 +0000
@@ -340,19 +340,19 @@
 static int preinit(const char *arg)
 {
     const opt_t subopts[] = {
-        {"progressive", OPT_ARG_BOOL,   &jpeg_progressive_mode, NULL, 0},
-        {"baseline",    OPT_ARG_BOOL,   &jpeg_baseline,         NULL, 0},
+        {"progressive", OPT_ARG_BOOL,   &jpeg_progressive_mode, NULL},
+        {"baseline",    OPT_ARG_BOOL,   &jpeg_baseline,         NULL},
         {"optimize",    OPT_ARG_INT,    &jpeg_optimize,
-                                            (opt_test_f)int_zero_hundred, 0},
+                                            (opt_test_f)int_zero_hundred},
         {"smooth",      OPT_ARG_INT,    &jpeg_smooth,
-                                            (opt_test_f)int_zero_hundred, 0},
+                                            (opt_test_f)int_zero_hundred},
         {"quality",     OPT_ARG_INT,    &jpeg_quality,
-                                            (opt_test_f)int_zero_hundred, 0},
-        {"dpi",         OPT_ARG_INT,    &jpeg_dpi,              NULL, 0},
-        {"outdir",      OPT_ARG_MSTRZ,  &jpeg_outdir,           NULL, 0},
-        {"subdirs",     OPT_ARG_MSTRZ,  &jpeg_subdirs,          NULL, 0},
-        {"maxfiles",    OPT_ARG_INT,    &jpeg_maxfiles, (opt_test_f)int_pos, 0},
-        {NULL, 0, NULL, NULL, 0}
+                                            (opt_test_f)int_zero_hundred},
+        {"dpi",         OPT_ARG_INT,    &jpeg_dpi,              NULL},
+        {"outdir",      OPT_ARG_MSTRZ,  &jpeg_outdir,           NULL},
+        {"subdirs",     OPT_ARG_MSTRZ,  &jpeg_subdirs,          NULL},
+        {"maxfiles",    OPT_ARG_INT,    &jpeg_maxfiles, (opt_test_f)int_pos},
+        {NULL, 0, NULL, NULL}
     };
     const char *info_message = NULL;
 
--- a/libvo/vo_md5sum.c	Sun Mar 15 10:01:02 2009 +0000
+++ b/libvo/vo_md5sum.c	Sun Mar 15 10:03:09 2009 +0000
@@ -108,8 +108,8 @@
 static int preinit(const char *arg)
 {
     const opt_t subopts[] = {
-        {"outfile",     OPT_ARG_MSTRZ,    &md5sum_outfile,   NULL, 0},
-        {NULL, 0, NULL, NULL, 0}
+        {"outfile",     OPT_ARG_MSTRZ,    &md5sum_outfile,   NULL},
+        {NULL, 0, NULL, NULL}
     };
 
     mp_msg(MSGT_VO, MSGL_INFO, "%s: %s\n", info.short_name,
--- a/libvo/vo_png.c	Sun Mar 15 10:01:02 2009 +0000
+++ b/libvo/vo_png.c	Sun Mar 15 10:03:09 2009 +0000
@@ -291,9 +291,9 @@
 }
 
 static const opt_t subopts[] = {
-    {"alpha", OPT_ARG_BOOL, &use_alpha, NULL, 0},
+    {"alpha", OPT_ARG_BOOL, &use_alpha, NULL},
     {"z",   OPT_ARG_INT, &z_compression, (opt_test_f)int_zero_to_nine},
-    {"outdir",      OPT_ARG_MSTRZ,  &png_outdir,           NULL, 0},
+    {"outdir",      OPT_ARG_MSTRZ,  &png_outdir,           NULL},
     {NULL}
 };
 
--- a/libvo/vo_pnm.c	Sun Mar 15 10:01:02 2009 +0000
+++ b/libvo/vo_pnm.c	Sun Mar 15 10:03:09 2009 +0000
@@ -121,15 +121,15 @@
     int ppm_type = 0, pgm_type = 0, pgmyuv_type = 0,
         raw_mode = 0, ascii_mode = 0;
     const opt_t subopts[] = {
-        {"ppm",         OPT_ARG_BOOL,   &ppm_type,      NULL, 0},
-        {"pgm",         OPT_ARG_BOOL,   &pgm_type,      NULL, 0},
-        {"pgmyuv",      OPT_ARG_BOOL,   &pgmyuv_type,   NULL, 0},
-        {"raw",         OPT_ARG_BOOL,   &raw_mode,      NULL, 0},
-        {"ascii",       OPT_ARG_BOOL,   &ascii_mode,    NULL, 0},
-        {"outdir",      OPT_ARG_MSTRZ,  &pnm_outdir,    NULL, 0},
-        {"subdirs",     OPT_ARG_MSTRZ,  &pnm_subdirs,   NULL, 0},
-        {"maxfiles",    OPT_ARG_INT,    &pnm_maxfiles,  (opt_test_f)int_pos, 0},
-        {NULL, 0, NULL, NULL, 0}
+        {"ppm",         OPT_ARG_BOOL,   &ppm_type,      NULL},
+        {"pgm",         OPT_ARG_BOOL,   &pgm_type,      NULL},
+        {"pgmyuv",      OPT_ARG_BOOL,   &pgmyuv_type,   NULL},
+        {"raw",         OPT_ARG_BOOL,   &raw_mode,      NULL},
+        {"ascii",       OPT_ARG_BOOL,   &ascii_mode,    NULL},
+        {"outdir",      OPT_ARG_MSTRZ,  &pnm_outdir,    NULL},
+        {"subdirs",     OPT_ARG_MSTRZ,  &pnm_subdirs,   NULL},
+        {"maxfiles",    OPT_ARG_INT,    &pnm_maxfiles,  (opt_test_f)int_pos},
+        {NULL, 0, NULL, NULL}
     };
     const char *info_message = NULL;
 
--- a/libvo/vo_sdl.c	Sun Mar 15 10:01:02 2009 +0000
+++ b/libvo/vo_sdl.c	Sun Mar 15 10:03:09 2009 +0000
@@ -1527,10 +1527,10 @@
     int sdl_hwaccel;
     int sdl_forcexv;
     const opt_t subopts[] = {
-	    {"forcexv", OPT_ARG_BOOL,  &sdl_forcexv, NULL, 0},
-	    {"hwaccel", OPT_ARG_BOOL,  &sdl_hwaccel, NULL, 0},
-	    {"driver",  OPT_ARG_MSTRZ, &sdl_driver,  NULL, 0},
-	    {NULL, 0, NULL, NULL, 0}
+	    {"forcexv", OPT_ARG_BOOL,  &sdl_forcexv, NULL},
+	    {"hwaccel", OPT_ARG_BOOL,  &sdl_hwaccel, NULL},
+	    {"driver",  OPT_ARG_MSTRZ, &sdl_driver,  NULL},
+	    {NULL, 0, NULL, NULL}
     };
 
     sdl_forcexv = 1;
--- a/libvo/vo_zr2.c	Sun Mar 15 10:01:02 2009 +0000
+++ b/libvo/vo_zr2.c	Sun Mar 15 10:03:09 2009 +0000
@@ -210,10 +210,10 @@
 	char *dev_arg = NULL, *norm_arg = NULL;
 	int norm = VIDEO_MODE_AUTO, prebuf = 0;
 	const opt_t subopts[] = { /* don't want warnings with -Wall... */
-		{ "dev",    OPT_ARG_MSTRZ, &dev_arg,   NULL, 	        0 },
-		{ "prebuf", OPT_ARG_BOOL,  &prebuf,    (opt_test_f)pbc, 0 },
-		{ "norm",   OPT_ARG_MSTRZ, &norm_arg,  (opt_test_f)nc,  0 },
-		{ NULL,     0, 		   NULL,       NULL, 	        0 }
+		{ "dev",    OPT_ARG_MSTRZ, &dev_arg,   NULL 	       },
+		{ "prebuf", OPT_ARG_BOOL,  &prebuf,    (opt_test_f)pbc },
+		{ "norm",   OPT_ARG_MSTRZ, &norm_arg,  (opt_test_f)nc  },
+		{ NULL,     0, 		   NULL,       NULL 	       }
 	};
 
 	VERBOSE("preinit() called with arg: %s\n", arg);