diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-16 16:32:52 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-16 16:32:52 +0100 |
| commit | ed7929f1a3643a591f84b5362a9a1b85b3fb788d (patch) | |
| tree | b1360318923c51751cb98937b9d80978d72037d7 /src/lib/subtitle.cc | |
| parent | 60df561ea1c0e9dc108b6f117fa544df034489b0 (diff) | |
No-op; comments.
Diffstat (limited to 'src/lib/subtitle.cc')
| -rw-r--r-- | src/lib/subtitle.cc | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/src/lib/subtitle.cc b/src/lib/subtitle.cc index 01e8cac13..dcb747828 100644 --- a/src/lib/subtitle.cc +++ b/src/lib/subtitle.cc @@ -17,6 +17,10 @@ */ +/** @file src/subtitle.cc + * @brief Representations of subtitles. + */ + #include "subtitle.h" #include "image.h" #include "exceptions.h" @@ -25,6 +29,10 @@ using namespace std; using namespace boost; +/** Construct a TimedSubtitle. This is a subtitle image, position, + * and a range of time over which it should be shown. + * @param sub AVSubtitle to read. + */ TimedSubtitle::TimedSubtitle (AVSubtitle const & sub) { /* subtitle PTS in seconds */ @@ -73,13 +81,27 @@ TimedSubtitle::displayed_at (double t) const return t >= _from && t <= _to; } +/** Construct a subtitle, which is an image and a position. + * @param p Position within the (uncropped) source frame. + * @param i Image of the subtitle (should be RGBA). + */ Subtitle::Subtitle (Position p, shared_ptr<Image> i) : _position (p) , _image (i) { } - + +/** Given the area of a subtitle, work out the area it should + * take up when its video frame is scaled up, and it is optionally + * itself scaled and offset. + * @param target_x_scale the x scaling of the video frame that the subtitle is in. + * @param target_y_scale the y scaling of the video frame that the subtitle is in. + * @param sub_area The area of the subtitle within the original source. + * @param subtitle_offset y offset to apply to the subtitle position (+ve is down) + * in the coordinate space of the source. + * @param subtitle_scale scaling factor to apply to the subtitle image. + */ Rectangle subtitle_transformed_area ( float target_x_scale, float target_y_scale, @@ -114,6 +136,7 @@ subtitle_transformed_area ( return tx; } +/** @return area that this subtitle take up, in the original uncropped source's coordinate space */ Rectangle Subtitle::area () const { |
