mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 12:05:38 +00:00
VideoFFmpegComponent is now the default video player and no longer marked as experimental.
This commit is contained in:
parent
3a82249163
commit
1d0d5326a8
|
@ -759,8 +759,8 @@ void GuiMenu::openOtherSettings()
|
|||
auto video_player = std::make_shared<OptionListComponent<std::string>>
|
||||
(mWindow, getHelpStyle(), "FULLSCREEN MODE", false);
|
||||
std::string selectedPlayer = Settings::getInstance()->getString("VideoPlayer");
|
||||
video_player->add("FFmpeg", "ffmpeg", selectedPlayer == "ffmpeg");
|
||||
video_player->add("VLC", "vlc", selectedPlayer == "vlc");
|
||||
video_player->add("FFmpeg (experimental)", "ffmpeg", selectedPlayer == "ffmpeg");
|
||||
// If there are no objects returned, then there must be a manually modified entry in the
|
||||
// configuration file. Simply set the video player to VLC in this case.
|
||||
if (video_player->getSelectedObjects().size() == 0)
|
||||
|
|
|
@ -205,7 +205,7 @@ void Settings::setDefaults()
|
|||
#if defined (__unix__)
|
||||
mStringMap["FullscreenMode"] = { "normal", "normal" };
|
||||
#endif
|
||||
mStringMap["VideoPlayer"] = { "vlc", "vlc" };
|
||||
mStringMap["VideoPlayer"] = { "ffmpeg", "ffmpeg" };
|
||||
#if defined(_RPI_)
|
||||
mBoolMap["VideoOmxPlayer"] = { false, false };
|
||||
// We're defaulting to OMX Player for full screen video on the Pi.
|
||||
|
|
Loading…
Reference in a new issue