summaryrefslogtreecommitdiff
path: root/src/lib/player.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-05-11 20:43:58 +0200
committerCarl Hetherington <cth@carlh.net>2025-05-11 21:03:32 +0200
commita98f6e4f84d02b87ba05cecfcc3005858f274afa (patch)
tree5b244f709c400cf2fff25f7af7b4f9c158bc8f2c /src/lib/player.cc
parent6157596fabb32c0f915525e4d05130652c1cd751 (diff)
Cleanup: use constexpr for content and player properties.
Also fix a clash between the ATMOS and player properties.
Diffstat (limited to 'src/lib/player.cc')
-rw-r--r--src/lib/player.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc
index 869067906..516a66ee2 100644
--- a/src/lib/player.cc
+++ b/src/lib/player.cc
@@ -84,19 +84,6 @@ using namespace boost::placeholders;
using namespace dcpomatic;
-int const PlayerProperty::VIDEO_CONTAINER_SIZE = 700;
-int const PlayerProperty::PLAYLIST = 701;
-int const PlayerProperty::FILM_CONTAINER = 702;
-int const PlayerProperty::FILM_VIDEO_FRAME_RATE = 703;
-int const PlayerProperty::DCP_DECODE_REDUCTION = 704;
-int const PlayerProperty::PLAYBACK_LENGTH = 705;
-int const PlayerProperty::IGNORE_VIDEO = 706;
-int const PlayerProperty::IGNORE_AUDIO = 707;
-int const PlayerProperty::IGNORE_TEXT = 708;
-int const PlayerProperty::ALWAYS_BURN_OPEN_SUBTITLES = 709;
-int const PlayerProperty::PLAY_REFERENCED = 710;
-
-
Player::Player(shared_ptr<const Film> film, Image::Alignment subtitle_alignment, bool tolerant)
: _film(film)
, _suspended(0)