Mercurial > minori
view src/track/constants.cc @ 99:503bc1547d49
strings: clarify on some functions and make some of them miniscule
amounts faster
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 03 Nov 2023 09:00:46 -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