mirror of
https://github.com/mpv-player/mpv
synced 2025-04-07 10:02:50 +00:00
command: minor fixes to video-aspect property
Make the option type exactly the same as the underlying option's one. I think this has no user-visible consequences, but makes more sense for the option-property bridge.
This commit is contained in:
parent
79e20ff485
commit
62d4a3891a
@ -2959,7 +2959,7 @@ static int mp_property_aspect(void *ctx, struct m_property *prop,
|
|||||||
return M_PROPERTY_OK;
|
return M_PROPERTY_OK;
|
||||||
}
|
}
|
||||||
case M_PROPERTY_PRINT: {
|
case M_PROPERTY_PRINT: {
|
||||||
if (mpctx->opts->movie_aspect <= 0) {
|
if (mpctx->opts->movie_aspect < 0) {
|
||||||
*(char **)arg = talloc_asprintf(NULL, "%.3f (original)", aspect);
|
*(char **)arg = talloc_asprintf(NULL, "%.3f (original)", aspect);
|
||||||
return M_PROPERTY_OK;
|
return M_PROPERTY_OK;
|
||||||
}
|
}
|
||||||
@ -2970,13 +2970,7 @@ static int mp_property_aspect(void *ctx, struct m_property *prop,
|
|||||||
return M_PROPERTY_OK;
|
return M_PROPERTY_OK;
|
||||||
}
|
}
|
||||||
case M_PROPERTY_GET_TYPE:
|
case M_PROPERTY_GET_TYPE:
|
||||||
*(struct m_option *)arg = (struct m_option){
|
return mp_property_generic_option(mpctx, prop, action, arg);
|
||||||
.type = CONF_TYPE_FLOAT,
|
|
||||||
.flags = CONF_RANGE,
|
|
||||||
.min = -1,
|
|
||||||
.max = 10,
|
|
||||||
};
|
|
||||||
return M_PROPERTY_OK;
|
|
||||||
}
|
}
|
||||||
return M_PROPERTY_NOT_IMPLEMENTED;
|
return M_PROPERTY_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user