summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authoratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-19 20:11:27 +0000
committeratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-19 20:11:27 +0000
commite2c2704125c429acd954e201de85682cb6cbc9d5 (patch)
tree244d01d8248f7aab18b5f430e1f7a7e208e977d7 /cfg-mplayer.h
parentadb8b7561b32ef283129e87d148462cee550188a (diff)
downloadmpv-e2c2704125c429acd954e201de85682cb6cbc9d5.tar.bz2
mpv-e2c2704125c429acd954e201de85682cb6cbc9d5.tar.xz
added png out support (-z switch)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@527 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 018137abc5..c52bd9772d 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -10,6 +10,9 @@ extern char *monitor_hfreq_str;
extern char *monitor_vfreq_str;
extern char *monitor_dotclock_str;
#endif
+#ifdef HAVE_PNG
+extern int z_compression;
+#endif
struct config conf[]={
/* name, pointer, type, flags, min, max */
@@ -68,6 +71,9 @@ struct config conf[]={
CONF_TYPE_PRINT, 0, 0, 0},
{"pp", &divx_quality, CONF_TYPE_INT, CONF_RANGE, 0, 63},
{"br", &encode_bitrate, CONF_TYPE_INT, CONF_RANGE, 10000, 10000000},
+#ifdef HAVE_PNG
+ {"z", &z_compression, CONF_TYPE_INT, CONF_RANGE, 0, 9},
+#endif
{"x", &screen_size_x, CONF_TYPE_INT, CONF_RANGE, 1, 4096},
{"y", &screen_size_y, CONF_TYPE_INT, CONF_RANGE, 1, 4096},