diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-27 21:54:50 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-27 21:54:50 +0100 |
| commit | 6166c045a8de42edd09924fdd995a77a3b753e54 (patch) | |
| tree | 91da3177d9802c0b9da84607eb3c3831ffc975b5 /src/lib/video_content.cc | |
| parent | a4642b6463430175d0f4e1ca284a4bf08bcf4de9 (diff) | |
Support for keeping video in sequence when changing lengths; tie selection in timeline with that in the editor.
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 2e413678f..ae799dad3 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -23,10 +23,9 @@ #include "i18n.h" -int const VideoContentProperty::VIDEO_LENGTH = 0; -int const VideoContentProperty::VIDEO_SIZE = 1; -int const VideoContentProperty::VIDEO_FRAME_RATE = 2; -int const VideoContentProperty::VIDEO_CROP = 3; +int const VideoContentProperty::VIDEO_SIZE = 0; +int const VideoContentProperty::VIDEO_FRAME_RATE = 1; +int const VideoContentProperty::VIDEO_CROP = 2; using std::string; using std::stringstream; |
