Commit 70514818 authored by Joseph Tulou's avatar Joseph Tulou Committed by Laurent Aimar

Corrects original width/height calculations to be consistent with other part of vlc (patch 1/3)

Signed-off-by: default avatarLaurent Aimar <fenrir@videolan.org>
parent 1312fe71
...@@ -473,17 +473,25 @@ void vout_PlacePicture( const vout_thread_t *p_vout, ...@@ -473,17 +473,25 @@ void vout_PlacePicture( const vout_thread_t *p_vout,
*pi_width = i_width; *pi_width = i_width;
*pi_height = i_height; *pi_height = i_height;
} }
else if( i_zoom == ZOOM_FP_FACTOR ) /* original size */ else
{
unsigned int i_original_width, i_original_height;
if( p_vout->fmt_in.i_sar_num >= p_vout->fmt_in.i_sar_den )
{ {
*pi_width = __MIN( i_width, p_vout->fmt_in.i_visible_width ); i_original_width = p_vout->fmt_in.i_visible_width *
*pi_height = __MIN( i_height, p_vout->fmt_in.i_visible_height ); p_vout->fmt_in.i_sar_num / p_vout->fmt_in.i_sar_den;
i_original_height = p_vout->fmt_in.i_visible_height;
} }
else else
{ {
*pi_width = i_original_width = p_vout->fmt_in.i_visible_width;
p_vout->fmt_in.i_visible_width * i_zoom / ZOOM_FP_FACTOR; i_original_height = p_vout->fmt_in.i_visible_height *
*pi_height = p_vout->fmt_in.i_sar_den / p_vout->fmt_in.i_sar_num;
p_vout->fmt_in.i_visible_height * i_zoom / ZOOM_FP_FACTOR; }
*pi_width = i_original_width * i_zoom / ZOOM_FP_FACTOR ;
*pi_height = i_original_height * i_zoom / ZOOM_FP_FACTOR ;
} }
int64_t i_scaled_width = p_vout->fmt_in.i_visible_width * (int64_t)p_vout->fmt_in.i_sar_num * int64_t i_scaled_width = p_vout->fmt_in.i_visible_width * (int64_t)p_vout->fmt_in.i_sar_num *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment