Skip to content

Commit

Permalink
UI: Make Hybrid MOV the default for beta builds on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
derrod committed Dec 30, 2024
1 parent 5eb40d7 commit a182987
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions UI/window-basic-main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1578,13 +1578,19 @@ static const double scaled_vals[] = {1.0, 1.25, (1.0 / 0.75), 1.5, (1.0 / 0.6),

extern void CheckExistingCookieId();

#ifdef __APPLE__
#ifdef __APPLE__ // macOS
#if OBS_RELEASE_CANDIDATE == 0 && OBS_BETA == 0
#define DEFAULT_CONTAINER "fragmented_mov"
#elif OBS_RELEASE_CANDIDATE == 0 && OBS_BETA == 0
#else
#define DEFAULT_CONTAINER "hybrid_mov"
#endif
#else // Windows/Linux
#if OBS_RELEASE_CANDIDATE == 0 && OBS_BETA == 0
#define DEFAULT_CONTAINER "mkv"
#else
#define DEFAULT_CONTAINER "hybrid_mp4"
#endif
#endif

bool OBSBasic::InitBasicConfigDefaults()
{
Expand Down

0 comments on commit a182987

Please sign in to comment.