mirror of https://github.com/mpv-player/mpv
options: --pphelp: fix after libpostproc version change
The last libpostproc major version change from 51 to 52 changed the type of the "pp_help" symbol from a pointer to help text to the help text itself. This made --pphelp crash. Change the option definition to match the new type. This probably makes it crash if compiled against older libpostproc, but the option is not important enough to try supporting that (I've seen no reports of the crash, probably people just don't use the option).
This commit is contained in:
parent
89b37a32da
commit
d33f7cf6f2
|
@ -605,7 +605,7 @@ const m_option_t common_opts[] = {
|
|||
// postprocessing:
|
||||
#ifdef CONFIG_FFMPEG
|
||||
{"pp", &divx_quality, CONF_TYPE_INT, 0, 0, 0, NULL},
|
||||
{"pphelp", &pp_help, CONF_TYPE_PRINT_INDIRECT, CONF_NOCFG, 0, 0, NULL},
|
||||
{"pphelp", &pp_help, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
|
||||
#endif
|
||||
|
||||
// scaling:
|
||||
|
|
Loading…
Reference in New Issue