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