summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-08-10 02:28:10 +0100
committerCarl Hetherington <cth@carlh.net>2018-08-10 02:28:10 +0100
commitc9a97108df1d609bd13df8a21bee11d7ca55feea (patch)
treea740a9cd217c7ffa8a75939959fd25a4176fb78c
parent672b6dd3356d4cbf8703777538d396dbb868b96d (diff)
Try to fix Windows build.
-rw-r--r--src/lib/player.cc8
-rw-r--r--src/lib/player.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc
index 782e445e8..41cf52f2c 100644
--- a/src/lib/player.cc
+++ b/src/lib/player.cc
@@ -83,7 +83,7 @@ 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::IGNORE = 705;
+int const PlayerProperty::IGNORE_COMPONENTS = 705;
int const PlayerProperty::FAST = 706;
int const PlayerProperty::PLAY_REFERENCED = 707;
@@ -474,7 +474,7 @@ Player::set_ignore_video ()
_have_valid_pieces = false;
}
- Changed (PlayerProperty::IGNORE, false);
+ Changed (PlayerProperty::IGNORE_COMPONENTS, false);
}
void
@@ -486,7 +486,7 @@ Player::set_ignore_audio ()
_have_valid_pieces = false;
}
- Changed (PlayerProperty::IGNORE, false);
+ Changed (PlayerProperty::IGNORE_COMPONENTS, false);
}
void
@@ -498,7 +498,7 @@ Player::set_ignore_text ()
_have_valid_pieces = false;
}
- Changed (PlayerProperty::IGNORE, false);
+ Changed (PlayerProperty::IGNORE_COMPONENTS, false);
}
/** Set the player to always burn open texts into the image regardless of the content settings */
diff --git a/src/lib/player.h b/src/lib/player.h
index ccdd4e12c..c6e657d16 100644
--- a/src/lib/player.h
+++ b/src/lib/player.h
@@ -56,7 +56,7 @@ public:
static int const FILM_CONTAINER;
static int const FILM_VIDEO_FRAME_RATE;
static int const DCP_DECODE_REDUCTION;
- static int const IGNORE;
+ static int const IGNORE_COMPONENTS;
static int const FAST;
static int const PLAY_REFERENCED;
};