disable av sync in radio mode

- thx DbO ;-)
This commit is contained in:
Frankenstone
2019-02-26 08:06:46 +01:00
committed by Thilo Graf
parent ffcda7c304
commit ef4bb7cff3

View File

@@ -4292,6 +4292,9 @@ void CNeutrinoApp::tvMode( bool rezap )
#ifdef USEACTIONLOG
g_ActionLog->println("mode: tv");
#endif
videoDecoder->SetSyncMode((AVSYNC_TYPE)g_settings.avsync);
audioDecoder->SetSyncMode((AVSYNC_TYPE)g_settings.avsync);
}
void CNeutrinoApp::scartMode( bool bOnOff )
@@ -4547,6 +4550,9 @@ void CNeutrinoApp::radioMode( bool rezap)
if( rezap )
channelRezap();
frameBuffer->showFrame("radiomode.jpg");
videoDecoder->SetSyncMode((AVSYNC_TYPE)AVSYNC_DISABLED);
audioDecoder->SetSyncMode((AVSYNC_TYPE)AVSYNC_DISABLED);
}
void CNeutrinoApp::channelRezap()