summaryrefslogtreecommitdiff
path: root/src/lib/subtitle.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-14 13:02:57 +0100
committerCarl Hetherington <cth@carlh.net>2012-10-14 13:02:57 +0100
commit48c8f23660184486efbb34df9d677108b0eab204 (patch)
treeac1a4ea6aa23ed159bbcf8d10d1000739b5ad252 /src/lib/subtitle.cc
parentb1fc0de953b1c2fce8a31b267b63dfcaf67830c7 (diff)
Try moving subtitle adjustment for crop into the decoder.
Diffstat (limited to 'src/lib/subtitle.cc')
-rw-r--r--src/lib/subtitle.cc39
1 files changed, 10 insertions, 29 deletions
diff --git a/src/lib/subtitle.cc b/src/lib/subtitle.cc
index 040a057fc..0ea5a72d5 100644
--- a/src/lib/subtitle.cc
+++ b/src/lib/subtitle.cc
@@ -70,46 +70,27 @@ SubtitleImage::SubtitleImage (AVSubtitleRect const * rect)
}
}
-SubtitleTransform
-subtitle_transform (
- int target_base_width, int target_base_height,
+Rectangle
+transformed_subtitle_area (
float target_x_scale, float target_y_scale,
- Position sub_pos, int sub_width, int sub_height,
+ Rectangle sub_area,
shared_ptr<FilmState> fs
)
{
- SubtitleTransform tx;
+ Rectangle tx;
- /* The area of the original subtitle, in the coordinate space of the source video frame */
- Rectangle sub_area (sub_pos.x, sub_pos.y + fs->subtitle_offset, sub_width, sub_height);
-
- /* The cropped area of the source video frame, in the same coordinate space */
- Rectangle cropped_target_area (
- fs->crop.left,
- fs->crop.top,
- target_base_width - (fs->crop.left + fs->crop.right),
- target_base_height - (fs->crop.top + fs->crop.bottom)
- );
-
- /* Hence the area of the cropped subtitle, in the same coordinate space */
- Rectangle cropped_sub_area = sub_area.intersection (cropped_target_area);
-
- /* The crop that should be applied to the subtitle, in its coordinate space */
- tx.crop.x = cropped_sub_area.x - sub_area.x;
- tx.crop.y = cropped_sub_area.y - sub_area.y;
- tx.crop.w = cropped_sub_area.w;
- tx.crop.h = cropped_sub_area.h;
+ sub_area.y += fs->subtitle_offset;
/* We will scale the subtitle by the same amount as the video frame, and also by the additional
subtitle_scale
*/
- tx.transformed.w = cropped_sub_area.w * target_x_scale * fs->subtitle_scale;
- tx.transformed.h = cropped_sub_area.h * target_y_scale * fs->subtitle_scale;
+ tx.w = sub_area.w * target_x_scale * fs->subtitle_scale;
+ tx.h = sub_area.h * target_y_scale * fs->subtitle_scale;
/* Then we need a corrective translation, consisting of two parts:
*
* 1. that which is the result of the scaling of the subtitle by target_x_scale and target_y_scale; this will be
- * (sub_area.x - fs->crop_left) * target_x_scale and (sub_area.y - fs->crop_top) * target_y_scale.
+ * sub_area.x * target_x_scale and sub_area.y * target_y_scale.
*
* 2. that to shift the origin of the scale by fs->subtitle_scale to the centre of the subtitle; this will be
* (width_before_subtitle_scale * (1 - fs->subtitle_scale) / 2) and
@@ -118,8 +99,8 @@ subtitle_transform (
* Combining these two translations gives these expressions.
*/
- tx.transformed.x = target_x_scale * ((sub_area.x - fs->crop.left) + (cropped_sub_area.w * (1 - fs->subtitle_scale) / 2));
- tx.transformed.y = target_y_scale * ((sub_area.y - fs->crop.top) + (cropped_sub_area.h * (1 - fs->subtitle_scale) / 2));
+ tx.x = target_x_scale * (sub_area.x + (sub_area.w * (1 - fs->subtitle_scale) / 2));
+ tx.y = target_y_scale * (sub_area.y + (sub_area.h * (1 - fs->subtitle_scale) / 2));
return tx;
}