diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-12-23 01:20:52 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-12-23 01:20:52 +0000 |
| commit | eb1a65ba718c15a831d6c99a9bf1a51998aa4f9a (patch) | |
| tree | baca1287b65958eb997c0faec02fd8d596f36907 /src/lib/video_content.cc | |
| parent | 13b133de7fb5b953c23c58790c2d1f2a8bf4009c (diff) | |
Add top/bottom option for 3D frames.
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 0a19ffd69..cc075a34c 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -327,6 +327,8 @@ VideoContent::video_size_after_3d_split () const return s; case VIDEO_FRAME_TYPE_3D_LEFT_RIGHT: return libdcp::Size (s.width / 2, s.height); + case VIDEO_FRAME_TYPE_3D_TOP_BOTTOM: + return libdcp::Size (s.width, s.height / 2); } assert (false); |
