Merge.
[dcpomatic.git] / src / lib / piece.cc
1 /*
2     Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "piece.h"
21 #include "player.h"
22
23 using boost::shared_ptr;
24
25 Piece::Piece (shared_ptr<Content> c)
26         : content (c)
27         , video_position (c->position ())
28         , audio_position (c->position ())
29         , repeat_to_do (0)
30         , repeat_done (0)
31 {
32
33 }
34
35 Piece::Piece (shared_ptr<Content> c, shared_ptr<Decoder> d)
36         : content (c)
37         , decoder (d)
38         , video_position (c->position ())
39         , audio_position (c->position ())
40         , repeat_to_do (0)
41         , repeat_done (0)
42 {
43
44 }
45
46 /** Set this piece to repeat a video frame a given number of times */
47 void
48 Piece::set_repeat (IncomingVideo video, int num)
49 {
50         repeat_video = video;
51         repeat_to_do = num;
52         repeat_done = 0;
53 }
54
55 void
56 Piece::reset_repeat ()
57 {
58         repeat_video.image.reset ();
59         repeat_to_do = 0;
60         repeat_done = 0;
61 }
62
63 bool
64 Piece::repeating () const
65 {
66         return repeat_done != repeat_to_do;
67 }
68
69 void
70 Piece::repeat (Player* player)
71 {
72         player->process_video (
73                 repeat_video.weak_piece,
74                 repeat_video.image,
75                 repeat_video.eyes,
76                 repeat_video.part,
77                 repeat_done > 0,
78                 repeat_video.frame,
79                 (repeat_done + 1) * (TIME_HZ / player->_film->video_frame_rate ())
80                 );
81         
82         ++repeat_done;
83 }
84