diff --git a/DOCS/man/mpv.rst b/DOCS/man/mpv.rst index 7f4561c6a9..696e5e1c7d 100644 --- a/DOCS/man/mpv.rst +++ b/DOCS/man/mpv.rst @@ -180,6 +180,9 @@ d A Cycle aspect ratio override. +Ctrl h + Toggle hardware video decoding on/off. + (The following keys are valid only when using a video output that supports the corresponding adjustment, or the software equalizer (``--vf=eq``).) diff --git a/etc/input.conf b/etc/input.conf index d60e792808..a35d439ea4 100644 --- a/etc/input.conf +++ b/etc/input.conf @@ -143,6 +143,7 @@ #L cycle-values loop-file "inf" "no" # toggle infinite looping #ctrl+c quit 4 #DEL script-binding osc/visibility # cycle OSC display +#ctrl+h cycle-values hwdec "auto" "no" # cycle hardware decoding # Apple Remote section #AR_PLAY cycle pause diff --git a/player/command.c b/player/command.c index b282edda4c..e4e5246cc4 100644 --- a/player/command.c +++ b/player/command.c @@ -4321,6 +4321,7 @@ static const struct property_osd_display { {"ab-loop-a", "A-B loop start"}, {"ab-loop-b", .msg = "A-B loop: ${ab-loop-a} - ${ab-loop-b}"}, {"audio-device", "Audio device"}, + {"hwdec", .msg = "Hardware decoding: ${hwdec-current}"}, // By default, don't display the following properties on OSD {"pause", NULL}, {"fullscreen", NULL},