view src/track/constants.cc @ 95:8043152ef9d4

include: set classes as final where appropriate
author Paper <mrpapersonic@gmail.com>
date Wed, 01 Nov 2023 14:39:43 -0400
parents d02fdf1d6708
children 18979b066284
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"
#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