summaryrefslogtreecommitdiffstats
path: root/libvo/vo_jpeg.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-15 10:03:09 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-15 10:03:09 +0000
commit8484309af23652bbb4155ad3f840aeb10a4def8d (patch)
tree9a606710520dbae951f5d5e57b94c97fd3667d82 /libvo/vo_jpeg.c
parent17d0933e5710a96c9a182f764e353a930721f104 (diff)
downloadmpv-8484309af23652bbb4155ad3f840aeb10a4def8d.tar.bz2
mpv-8484309af23652bbb4155ad3f840aeb10a4def8d.tar.xz
Remove obsolete extra elements from opt_t struct initialization.
Fixes a bunch of 'excess elements in struct initializer' warnings. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28957 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_jpeg.c')
-rw-r--r--libvo/vo_jpeg.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/libvo/vo_jpeg.c b/libvo/vo_jpeg.c
index bcd86c6eec..4ba5178272 100644
--- a/libvo/vo_jpeg.c
+++ b/libvo/vo_jpeg.c
@@ -340,19 +340,19 @@ static int int_zero_hundred(int *val)
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;