From ce70068d69583d66f1fa6dd842386a1f34851fc3 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Tue, 1 Dec 2015 21:04:13 +0100 Subject: [PATCH] movieplayer: enable videoformat and 4:3 switches; (C) martii Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/a3ff096e06bec9bab88b722f87737e50a937bcaa Author: vanhofen Date: 2015-12-01 (Tue, 01 Dec 2015) Origin message was: ------------------ - movieplayer: enable videoformat and 4:3 switches; (C) martii ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/movieplayer.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index d1ab6dc9f..4d0230088 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -983,6 +983,10 @@ void CMoviePlayerGui::PlayFileLoop(void) repeat_mode = REPEAT_OFF; g_settings.movieplayer_repeat_on = repeat_mode; callInfoViewer(); + } else if( msg == (neutrino_msg_t) g_settings.key_next43mode) { + g_videoSettings->next43Mode(); + } else if( msg == (neutrino_msg_t) g_settings.key_switchformat) { + g_videoSettings->SwitchFormat(); } else if (msg == (neutrino_msg_t) CRCInput::RC_setup) { CNeutrinoApp::getInstance()->handleMsg(NeutrinoMessages::SHOW_MAINMENU, 0); } else if (msg == (neutrino_msg_t) g_settings.mpkey_play) {