Reset VideoDecoder::_position on seek.
[dcpomatic.git] / src / lib / video_decoder.cc
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "video_decoder.h"
22 #include "image.h"
23 #include "raw_image_proxy.h"
24 #include "film.h"
25 #include "log.h"
26 #include "compose.hpp"
27 #include <boost/foreach.hpp>
28 #include <iostream>
29
30 #include "i18n.h"
31
32 using std::cout;
33 using std::list;
34 using std::max;
35 using std::back_inserter;
36 using boost::shared_ptr;
37 using boost::optional;
38
39 VideoDecoder::VideoDecoder (Decoder* parent, shared_ptr<const Content> c, shared_ptr<Log> log)
40         : DecoderPart (parent, log)
41         , _content (c)
42 {
43
44 }
45
46 /** Called by decoder classes when they have a video frame ready.
47  *  @param frame Frame index within the content; this does not take into account 3D
48  *  so for 3D_ALTERNATE this value goes:
49  *     0: frame 0 left
50  *     1: frame 0 right
51  *     2: frame 1 left
52  *     3: frame 1 right
53  *  and so on.
54  */
55 void
56 VideoDecoder::emit (shared_ptr<const ImageProxy> image, Frame frame)
57 {
58         if (ignore ()) {
59                 return;
60         }
61
62         optional<bool> taken;
63
64         switch (_content->video->frame_type ()) {
65         case VIDEO_FRAME_TYPE_2D:
66                 taken = Data (ContentVideo (image, frame, EYES_BOTH, PART_WHOLE));
67                 break;
68         case VIDEO_FRAME_TYPE_3D:
69         {
70                 /* We receive the same frame index twice for 3D; hence we know which
71                    frame this one is.
72                 */
73                 bool const same = (_last_emitted && _last_emitted.get() == frame);
74                 taken = Data (ContentVideo (image, frame, same ? EYES_RIGHT : EYES_LEFT, PART_WHOLE));
75                 _last_emitted = frame;
76                 break;
77         }
78         case VIDEO_FRAME_TYPE_3D_ALTERNATE:
79                 taken = Data (ContentVideo (image, frame / 2, (frame % 2) ? EYES_RIGHT : EYES_LEFT, PART_WHOLE));
80                 frame /= 2;
81                 break;
82         case VIDEO_FRAME_TYPE_3D_LEFT_RIGHT:
83                 taken = Data (ContentVideo (image, frame, EYES_LEFT, PART_LEFT_HALF));
84                 taken = Data (ContentVideo (image, frame, EYES_RIGHT, PART_RIGHT_HALF));
85                 break;
86         case VIDEO_FRAME_TYPE_3D_TOP_BOTTOM:
87                 taken = Data (ContentVideo (image, frame, EYES_LEFT, PART_TOP_HALF));
88                 taken = Data (ContentVideo (image, frame, EYES_RIGHT, PART_BOTTOM_HALF));
89                 break;
90         case VIDEO_FRAME_TYPE_3D_LEFT:
91                 taken = Data (ContentVideo (image, frame, EYES_LEFT, PART_WHOLE));
92                 break;
93         case VIDEO_FRAME_TYPE_3D_RIGHT:
94                 taken = Data (ContentVideo (image, frame, EYES_RIGHT, PART_WHOLE));
95                 break;
96         default:
97                 DCPOMATIC_ASSERT (false);
98         }
99
100         if (taken.get_value_or(false)) {
101                 _position = ContentTime::from_frames (frame, _content->active_video_frame_rate ());
102         }
103 }
104
105 void
106 VideoDecoder::seek ()
107 {
108         _position = ContentTime();
109         _last_emitted.reset ();
110 }