mirror of
https://github.com/mpv-player/mpv
synced 2025-02-13 18:37:10 +00:00
options: do not enable MPEG2 hwdec by default
Too many broken hardware decoders. Noticed wrong decoding of a video
file encoded with x262 on RX Vega when using VAAPI (Mesa 18.3.2).
Looks fine with swdec and a cheap hardware BD player.
Reverts 017f3d0674
This commit is contained in:
parent
777a863bb6
commit
3dd59dbed0
@ -1092,7 +1092,7 @@ Video
|
||||
You can get the list of allowed codecs with ``mpv --vd=help``. Remove the
|
||||
prefix, e.g. instead of ``lavc:h264`` use ``h264``.
|
||||
|
||||
By default, this is set to ``h264,vc1,wmv3,hevc,mpeg2video,vp9``. Note that
|
||||
By default, this is set to ``h264,vc1,wmv3,hevc,vp9``. Note that
|
||||
the hardware acceleration special codecs like ``h264_vdpau`` are not
|
||||
relevant anymore, and in fact have been removed from Libav in this form.
|
||||
|
||||
|
@ -953,7 +953,7 @@ const struct MPOpts mp_default_opts = {
|
||||
.screenshot_template = "mpv-shot%n",
|
||||
|
||||
.hwdec_api = HAVE_RPI ? "mmal" : "no",
|
||||
.hwdec_codecs = "h264,vc1,wmv3,hevc,mpeg2video,vp9",
|
||||
.hwdec_codecs = "h264,vc1,wmv3,hevc,vp9",
|
||||
|
||||
.audio_output_channels = {
|
||||
.set = 1,
|
||||
|
Loading…
Reference in New Issue
Block a user