0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

vf_dsize: fix bug caused by typo

This commit is contained in:
wm4 2013-12-14 01:50:32 +01:00
parent 9bd7601c6d
commit a59ebae2ad

View File

@ -99,7 +99,7 @@ const vf_info_t vf_info_dsize = {
},
.options = (const struct m_option[]){
OPT_INTRANGE("w", w, 0, -3, INT_MAX),
OPT_INTRANGE("h", w, 0, -3, INT_MAX),
OPT_INTRANGE("h", h, 0, -3, INT_MAX),
OPT_INTRANGE("method", method, 0, -1, 3),
OPT_INTRANGE("round", round, 0, 0, 9999),
OPT_FLOAT("aspect", aspect, CONF_RANGE, .min = 0, .max = 10),