Untested; more movement of stuff out of decoder.
[dcpomatic.git] / src / lib / ab_transcoder.cc
1 /*
2     Copyright (C) 2012 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 <iostream>
21 #include <boost/shared_ptr.hpp>
22 #include "ab_transcoder.h"
23 #include "film.h"
24 #include "decoder.h"
25 #include "encoder.h"
26 #include "job.h"
27 #include "options.h"
28 #include "image.h"
29 #include "decoder_factory.h"
30
31 /** @file src/ab_transcoder.cc
32  *  @brief A transcoder which uses one Film for the left half of the screen, and a different one
33  *  for the right half (to facilitate A/B comparisons of settings)
34  */
35
36 using std::string;
37 using boost::shared_ptr;
38
39 /** @param a Film to use for the left half of the screen.
40  *  @param b Film to use for the right half of the screen.
41  *  @param o Options.
42  *  @param j Job that we are associated with.
43  *  @param e Encoder to use.
44  */
45
46 ABTranscoder::ABTranscoder (
47         shared_ptr<Film> a, shared_ptr<Film> b, shared_ptr<const Options> o, Job* j, shared_ptr<Encoder> e)
48         : _film_a (a)
49         , _film_b (b)
50         , _opt (o)
51         , _job (j)
52         , _encoder (e)
53 {
54         _da = decoder_factory (_film_a, o, j);
55         _db = decoder_factory (_film_b, o, j);
56
57         _da->Video.connect (bind (&ABTranscoder::process_video, this, _1, _2, 0));
58         _db->Video.connect (bind (&ABTranscoder::process_video, this, _1, _2, 1));
59         _da->Audio.connect (bind (&Encoder::process_audio, e, _1));
60 }
61
62 ABTranscoder::~ABTranscoder ()
63 {
64
65 }
66
67 void
68 ABTranscoder::process_video (shared_ptr<Image> yuv, shared_ptr<Subtitle> sub, int index)
69 {
70         if (index == 0) {
71                 /* Keep this image around until we get the other half */
72                 _image = yuv;
73         } else {
74                 /* Copy the right half of yuv into _image */
75                 for (int i = 0; i < yuv->components(); ++i) {
76                         int const line_size = yuv->line_size()[i];
77                         int const half_line_size = line_size / 2;
78                         int const stride = yuv->stride()[i];
79
80                         uint8_t* p = _image->data()[i];
81                         uint8_t* q = yuv->data()[i];
82                         
83                         for (int j = 0; j < yuv->lines (i); ++j) {
84                                 memcpy (p + half_line_size, q + half_line_size, half_line_size);
85                                 p += stride;
86                                 q += stride;
87                         }
88                 }
89                         
90                 /* And pass it to the encoder */
91                 _encoder->process_video (_image, sub);
92                 _image.reset ();
93         }
94 }
95
96
97 void
98 ABTranscoder::go ()
99 {
100         _encoder->process_begin ();
101         
102         while (1) {
103                 bool const a = _da->pass ();
104                 bool const b = _db->pass ();
105
106                 if (a && b) {
107                         break;
108                 }
109         }
110
111         _encoder->process_end ();
112 }
113