Mercurial > minori
view src/track/constants.cc @ 98:582b2fca1561
strings: parse HTML entities when reading synopsis, make the
toupper and tolower functions more sane
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 02 Nov 2023 15:22:02 -0400 |
parents | 18979b066284 |
children | f5940a575d83 |
line wrap: on
line source
#include "track/constants.h" // clang-format off // https://github.com/llvm/llvm-project/issues/62676 const std::vector<std::string> media_extensions = { "avi", "asf", "mp4", "mkv", "wmv" }; const std::vector<std::string> media_players = { #ifdef MACOSX "VLC", "IINA", "QuickTime Player" #elif WIN32 "vlc.exe", "mpc-hc.exe", "mpc-hc64.exe", "wmplayer.exe", "mpv.exe" #else // linux, unix, whatevs "vlc", "mpv", "mpc-qt" #endif }; // clang-format on