[MPlayer-cvslog] CVS: main/libvo vo_pnm.c,1.2,1.3
Ivo van Poorten CVS
syncmail at mplayerhq.hu
Sat Jan 15 22:21:10 CET 2005
CVS change done by Ivo van Poorten CVS
Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv7454/libvo
Modified Files:
vo_pnm.c
Log Message:
1l. parser can work with pnm_maxfiles directly
Index: vo_pnm.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_pnm.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vo_pnm.c 15 Jan 2005 20:06:49 -0000 1.2
+++ vo_pnm.c 15 Jan 2005 21:21:07 -0000 1.3
@@ -129,7 +129,7 @@
static uint32_t preinit(const char *arg)
{
int ppm_type = 0, pgm_type = 0, pgmyuv_type = 0,
- raw_mode = 0, ascii_mode = 0, maxfiles = 0;
+ raw_mode = 0, ascii_mode = 0;
strarg_t outdir = {0, NULL},
subdirs = {0, NULL};
opt_t subopts[] = {
@@ -140,7 +140,7 @@
{"ascii", OPT_ARG_BOOL, &ascii_mode, NULL},
{"outdir", OPT_ARG_STR, &outdir, NULL},
{"subdirs", OPT_ARG_STR, &subdirs, NULL},
- {"maxfiles", OPT_ARG_INT, &maxfiles, (opt_test_f)int_pos},
+ {"maxfiles", OPT_ARG_INT, &pnm_maxfiles, (opt_test_f)int_pos},
{NULL}
};
const char *info_message = NULL;
@@ -148,20 +148,20 @@
mp_msg(MSGT_VO, MSGL_INFO, "%s: %s\n", info.short_name,
MSGTR_VO_ParsingSuboptions);
+ pnm_maxfiles = 1000;
+
if (subopt_parse(arg, subopts) != 0) {
return -1;
}
pnm_type = PNM_TYPE_PPM;
pnm_mode = PNM_RAW_MODE;
- pnm_maxfiles = 1000;
if (pgmyuv_type) pnm_type = PNM_TYPE_PGMYUV;
if (pgm_type) pnm_type = PNM_TYPE_PGM;
if (ppm_type) pnm_type = PNM_TYPE_PPM;
if (ascii_mode) pnm_mode = PNM_ASCII_MODE;
if (raw_mode) pnm_mode = PNM_RAW_MODE;
- if (maxfiles) pnm_maxfiles = maxfiles;
if (outdir.len) {
pnm_outdir = malloc(outdir.len + 1);
More information about the MPlayer-cvslog
mailing list