diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-22 16:23:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-22 16:23:23 +0100 |
| commit | 8349f0c97d98c0b7550ff4c76ad25f8f06270d6a (patch) | |
| tree | bf441e13142b2810ac4e46cf94d4204ec4e037d5 /src/lib/video_content.cc | |
| parent | 75712cfaf2a8ec8904d7d9552c542a2245bbbc17 (diff) | |
Basics of front-end 3D (as far as viewer, at least).
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 7eca53c3d..076cd6ec6 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -35,6 +35,7 @@ int const VideoContentProperty::VIDEO_RATIO = 4; using std::string; using std::stringstream; using std::setprecision; +using std::cout; using boost::shared_ptr; using boost::lexical_cast; using boost::optional; @@ -231,7 +232,7 @@ VideoContent::set_video_frame_type (VideoFrameType t) { { boost::mutex::scoped_lock lm (_mutex); - _video_frame_rate = t; + _video_frame_type = t; } signal_changed (VideoContentProperty::VIDEO_FRAME_TYPE); |
