mirror of
https://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git
synced 2023-10-10 19:16:51 +02:00
Enable/disable/toggle fullscreen with hot-key.
This commit is contained in:
parent
ac2e10a308
commit
aa4debc9c8
@ -2,6 +2,7 @@ User johns
|
||||
Date:
|
||||
|
||||
Release Version 0.5.0
|
||||
Enable/disable/toggle fullscreen with hot-key (Feature #930).
|
||||
|
||||
User: CafeDelMar
|
||||
Date: Thu Apr 5 22:44:06 CEST 2012
|
||||
|
@ -844,6 +844,15 @@ static void HandleHotkey(int code)
|
||||
case 12: // toggle pass-through
|
||||
CodecSetAudioPassthrough(ConfigAudioPassthrough ^= 1);
|
||||
break;
|
||||
case 20: // disable full screen
|
||||
VideoSetFullscreen(0);
|
||||
break;
|
||||
case 21: // enable full screen
|
||||
VideoSetFullscreen(1);
|
||||
break;
|
||||
case 22: // toggle full screen
|
||||
VideoSetFullscreen(-1);
|
||||
break;
|
||||
default:
|
||||
esyslog(tr("[softhddev]: hot key %d is not supported\n"), code);
|
||||
break;
|
||||
@ -1769,7 +1778,10 @@ static const char *SVDRPHelpText[] = {
|
||||
" key is the hotkey number, following are supported:\n"
|
||||
" 10: disable audio pass-through\n"
|
||||
" 11: enable audio pass-through\n"
|
||||
" 12: toggle audio pass-through\n",
|
||||
" 12: toggle audio pass-through\n"
|
||||
" 20: disable fullscreen\n"
|
||||
" 21: enable fullscreen\n"
|
||||
" 22: toggle fullscreen\n",
|
||||
NULL
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user