Fix subtitle positioning in the view, I think (#60).
authorCarl Hetherington <cth@carlh.net>
Mon, 18 Feb 2013 19:39:23 +0000 (19:39 +0000)
committerCarl Hetherington <cth@carlh.net>
Mon, 18 Feb 2013 19:39:23 +0000 (19:39 +0000)
src/lib/subtitle.cc
src/wx/film_viewer.cc

index bd5f0c87969cc76b473c4af506c0c88e913ec235..5bb91af63f1b74c0411e8b4ba6008dbb141e57ef 100644 (file)
@@ -134,8 +134,8 @@ subtitle_transformed_area (
         * Combining these two translations gives these expressions.
         */
        
-       tx.x = target_x_scale * (sub_area.x + (sub_area.width * (1 - subtitle_scale) / 2));
-       tx.y = target_y_scale * (sub_area.y + (sub_area.height * (1 - subtitle_scale) / 2));
+       tx.x = rint (target_x_scale * (sub_area.x + (sub_area.width * (1 - subtitle_scale) / 2)));
+       tx.y = rint (target_y_scale * (sub_area.y + (sub_area.height * (1 - subtitle_scale) / 2)));
 
        return tx;
 }
index e9992a11f2659fde242adb8d0698628ac4d19050..96656ce097891ef8d8f6d54aaa59c518e52c9118 100644 (file)
@@ -149,7 +149,6 @@ FilmViewer::set_film (shared_ptr<Film> f)
        _film->Changed.connect (boost::bind (&FilmViewer::film_changed, this, _1));
 
        film_changed (Film::CONTENT);
-       film_changed (Film::CROP);
        film_changed (Film::FORMAT);
        film_changed (Film::WITH_SUBTITLES);
        film_changed (Film::SUBTITLE_OFFSET);
@@ -289,9 +288,16 @@ FilmViewer::raw_to_display ()
        }
 
        if (_raw_sub) {
+
+               /* Our output is already cropped by the decoder, so we need to account for that
+                  when working out the scale that we are applying.
+               */
+
+               Size const cropped_size = _film->cropped_size (_film->size ());
+
                Rect tx = subtitle_transformed_area (
-                       float (_film_size.width) / _film->size().width,
-                       float (_film_size.height) / _film->size().height,
+                       float (_film_size.width) / cropped_size.width,
+                       float (_film_size.height) / cropped_size.height,
                        _raw_sub->area(), _film->subtitle_offset(), _film->subtitle_scale()
                        );