From b1defe9019642dc4b80697291d40ed88f09de8be Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 18 Nov 2012 22:46:15 +0000 Subject: Fix mis-alignment of copied AlignedImages; add some asserts; some docs. --- src/lib/combiner.cc | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/lib/combiner.cc') diff --git a/src/lib/combiner.cc b/src/lib/combiner.cc index 888046bc4..b85dbf288 100644 --- a/src/lib/combiner.cc +++ b/src/lib/combiner.cc @@ -28,16 +28,25 @@ Combiner::Combiner (Log* log) } +/** Process video for the left half of the frame. + * @param image Frame image. + * @param sub Subtitle (which will be ignored) + */ void Combiner::process_video (shared_ptr image, shared_ptr sub) { _image = image; } +/** Process video for the right half of the frame. + * @param image Frame image. + * @param sub Subtitle (which will be put onto the whole frame) + */ void Combiner::process_video_b (shared_ptr image, shared_ptr sub) { /* Copy the right half of this image into our _image */ + /* XXX: this should probably be in the Image class */ for (int i = 0; i < image->components(); ++i) { int const line_size = image->line_size()[i]; int const half_line_size = line_size / 2; -- cgit v1.2.3