summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/video_content.cc20
-rw-r--r--src/lib/video_content.h1
2 files changed, 9 insertions, 12 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc
index 5686a0a6f..655b8baf6 100644
--- a/src/lib/video_content.cc
+++ b/src/lib/video_content.cc
@@ -43,14 +43,13 @@ int const VideoContentProperty::USE = 0;
int const VideoContentProperty::SIZE = 1;
int const VideoContentProperty::FRAME_TYPE = 2;
int const VideoContentProperty::CROP = 3;
-int const VideoContentProperty::SCALE = 4;
-int const VideoContentProperty::COLOUR_CONVERSION = 5;
-int const VideoContentProperty::FADE_IN = 6;
-int const VideoContentProperty::FADE_OUT = 7;
-int const VideoContentProperty::RANGE = 8;
-int const VideoContentProperty::CUSTOM_RATIO = 9;
-int const VideoContentProperty::CUSTOM_SIZE = 10;
-int const VideoContentProperty::BURNT_SUBTITLE_LANGUAGE = 11;
+int const VideoContentProperty::COLOUR_CONVERSION = 4;
+int const VideoContentProperty::FADE_IN = 5;
+int const VideoContentProperty::FADE_OUT = 6;
+int const VideoContentProperty::RANGE = 7;
+int const VideoContentProperty::CUSTOM_RATIO = 8;
+int const VideoContentProperty::CUSTOM_SIZE = 9;
+int const VideoContentProperty::BURNT_SUBTITLE_LANGUAGE = 10;
using std::string;
using std::setprecision;
@@ -302,9 +301,8 @@ VideoContent::take_from_examiner (shared_ptr<VideoExaminer> d)
auto const range = d->range ();
ContentChangeSignaller cc1 (_parent, VideoContentProperty::SIZE);
- ContentChangeSignaller cc2 (_parent, VideoContentProperty::SCALE);
- ContentChangeSignaller cc3 (_parent, ContentProperty::LENGTH);
- ContentChangeSignaller cc4 (_parent, VideoContentProperty::RANGE);
+ ContentChangeSignaller cc2 (_parent, ContentProperty::LENGTH);
+ ContentChangeSignaller cc3 (_parent, VideoContentProperty::RANGE);
{
boost::mutex::scoped_lock lm (_mutex);
diff --git a/src/lib/video_content.h b/src/lib/video_content.h
index c1e1dbeec..0c4649954 100644
--- a/src/lib/video_content.h
+++ b/src/lib/video_content.h
@@ -45,7 +45,6 @@ public:
static int const SIZE;
static int const FRAME_TYPE;
static int const CROP;
- static int const SCALE;
static int const COLOUR_CONVERSION;
static int const FADE_IN;
static int const FADE_OUT;