view src/track/constants.cc @ 87:4aef97f4d998

information: use QGridLayout please... text: fix Line selection :)
author Paper <mrpapersonic@gmail.com>
date Tue, 31 Oct 2023 15:23:52 -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