Fix subtitle position.
[dcpomatic.git] / src / lib / video_content.cc
index ebec8b6dbe3ce3f40d1ee184d461d0e494af3f6e..404549532806fc947ecc7440d6acb85aef521bc0 100644 (file)
@@ -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);