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_decoder.cc | |
| parent | 13b133de7fb5b953c23c58790c2d1f2a8bf4009c (diff) | |
Add top/bottom option for 3D frames.
Diffstat (limited to 'src/lib/video_decoder.cc')
| -rw-r--r-- | src/lib/video_decoder.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/video_decoder.cc b/src/lib/video_decoder.cc index eaa4534e4..e7ddec5e6 100644 --- a/src/lib/video_decoder.cc +++ b/src/lib/video_decoder.cc @@ -47,6 +47,13 @@ VideoDecoder::video (shared_ptr<const Image> image, bool same, VideoContent::Fra Video (image->crop (Crop (half, 0, 0, 0), true), EYES_RIGHT, same, frame); break; } + case VIDEO_FRAME_TYPE_3D_TOP_BOTTOM: + { + int const half = image->size().height / 2; + Video (image->crop (Crop (0, 0, 0, half), true), EYES_LEFT, same, frame); + Video (image->crop (Crop (0, 0, half, 0), true), EYES_RIGHT, same, frame); + break; + } } _video_position = frame + 1; |
