blob: 4ccf7bb3732f074ab761e29055710ea785b6e6a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include "combiner.h"
#include "image.h"
using boost::shared_ptr;
Combiner::Combiner (Log* log)
: VideoProcessor (log)
{
}
void
Combiner::process_video (shared_ptr<Image> image, shared_ptr<Subtitle> sub)
{
_image = image;
}
void
Combiner::process_video_b (shared_ptr<Image> image, shared_ptr<Subtitle> sub)
{
/* Copy the right half of this image into our _image */
for (int i = 0; i < image->components(); ++i) {
int const line_size = image->line_size()[i];
int const half_line_size = line_size / 2;
int const stride = image->stride()[i];
uint8_t* p = _image->data()[i];
uint8_t* q = image->data()[i];
for (int j = 0; j < image->lines (i); ++j) {
memcpy (p + half_line_size, q + half_line_size, half_line_size);
p += stride;
q += stride;
}
}
Video (_image, sub);
_image.reset ();
}
|