summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authorivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-08-26 22:18:25 +0000
committerivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-08-26 22:18:25 +0000
commit77db87aa41370ef5bd19792b20c3c333b4307bd7 (patch)
tree46fc93d99371fa63377ecf74eef675d1ecd02502 /cfg-mplayer.h
parent139beb2d89b569b1194b525f528b32f2d3e78a5c (diff)
downloadmpv-77db87aa41370ef5bd19792b20c3c333b4307bd7.tar.bz2
mpv-77db87aa41370ef5bd19792b20c3c333b4307bd7.tar.xz
Added output to multiple directories for vo_jpeg.
Updated the manual page to describe the new options. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13159 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 05ac9f98d4..0536f592f8 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -36,6 +36,8 @@ extern int jpeg_optimize;
extern int jpeg_smooth;
extern int jpeg_quality;
extern char * jpeg_outdir;
+extern char * jpeg_subdirs;
+extern int jpeg_maxfiles;
#endif
#ifdef HAVE_SDL
//extern char *sdl_driver;
@@ -152,6 +154,8 @@ m_option_t jpeg_conf[]={
{"smooth", &jpeg_smooth, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
{"quality", &jpeg_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
{"outdir", &jpeg_outdir, CONF_TYPE_STRING, 0, 0, 0, NULL},
+ {"subdirs", &jpeg_subdirs, CONF_TYPE_STRING, 0, 0, 0, NULL},
+ {"maxfiles", &jpeg_maxfiles, CONF_TYPE_INT, CONF_MIN, 1, 0, NULL},
{NULL, NULL, 0, 0, 0, 0, NULL}
};
#endif