Mercurial > mplayer.hg
changeset 9602:74e8cd83708f
10L again with the options mins
author | albeu |
---|---|
date | Sat, 15 Mar 2003 20:55:33 +0000 |
parents | 0e265e2f3ac9 |
children | f9222b8a5166 |
files | libmpcodecs/vf_crop.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/vf_crop.c Sat Mar 15 20:51:35 2003 +0000 +++ b/libmpcodecs/vf_crop.c Sat Mar 15 20:55:33 2003 +0000 @@ -120,10 +120,10 @@ #define ST_OFF(f) M_ST_OFF(struct vf_priv_s,f) static m_option_t vf_opts_fields[] = { - {"w", ST_OFF(crop_w), CONF_TYPE_INT, M_OPT_MIN,1 ,0, NULL}, - {"h", ST_OFF(crop_h), CONF_TYPE_INT, M_OPT_MIN,1 ,0, NULL}, - {"x", ST_OFF(crop_x), CONF_TYPE_INT, M_OPT_MIN,0 ,0, NULL}, - {"y", ST_OFF(crop_y), CONF_TYPE_INT, M_OPT_MIN,0 ,0, NULL}, + {"w", ST_OFF(crop_w), CONF_TYPE_INT, M_OPT_MIN,0 ,0, NULL}, + {"h", ST_OFF(crop_h), CONF_TYPE_INT, M_OPT_MIN,0 ,0, NULL}, + {"x", ST_OFF(crop_x), CONF_TYPE_INT, M_OPT_MIN,-1 ,0, NULL}, + {"y", ST_OFF(crop_y), CONF_TYPE_INT, M_OPT_MIN,-1 ,0, NULL}, { NULL, NULL, 0, 0, 0, 0, NULL } };