2009-02-08 03:27:30 +00:00
|
|
|
/*
|
2015-04-13 07:36:54 +00:00
|
|
|
* This file is part of mpv.
|
2009-02-08 03:27:30 +00:00
|
|
|
*
|
2017-06-17 15:08:51 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2009-02-08 03:27:30 +00:00
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* mpv is distributed in the hope that it will be useful,
|
2009-02-08 03:27:30 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-06-17 15:08:51 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2009-02-08 03:27:30 +00:00
|
|
|
*
|
2017-06-17 15:08:51 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2009-02-08 03:27:30 +00:00
|
|
|
*/
|
|
|
|
|
2001-10-03 14:41:53 +00:00
|
|
|
/* Stuff for correct aspect scaling. */
|
2001-10-18 02:42:20 +00:00
|
|
|
#include "aspect.h"
|
2016-04-03 11:55:37 +00:00
|
|
|
#include "math.h"
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "vo.h"
|
2013-12-17 01:39:45 +00:00
|
|
|
#include "common/msg.h"
|
2013-12-17 01:02:25 +00:00
|
|
|
#include "options/options.h"
|
2014-01-21 23:26:01 +00:00
|
|
|
#include "video/mp_image.h"
|
2001-10-03 14:41:53 +00:00
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "vo.h"
|
2014-01-21 22:47:54 +00:00
|
|
|
#include "sub/osd.h"
|
2002-06-05 19:35:54 +00:00
|
|
|
|
2016-04-10 14:29:33 +00:00
|
|
|
static void aspect_calc_panscan(struct mp_vo_opts *opts,
|
2016-08-19 08:24:26 +00:00
|
|
|
int w, int h, int d_w, int d_h, int unscaled,
|
2014-01-21 23:26:01 +00:00
|
|
|
int window_w, int window_h, double monitor_par,
|
|
|
|
int *out_w, int *out_h)
|
2008-05-01 08:02:26 +00:00
|
|
|
{
|
2016-08-19 08:24:26 +00:00
|
|
|
w *= monitor_par;
|
|
|
|
|
2014-01-21 23:26:01 +00:00
|
|
|
int fwidth = window_w;
|
2014-04-20 19:36:56 +00:00
|
|
|
int fheight = (float)window_w / d_w * d_h / monitor_par;
|
|
|
|
if (fheight > window_h || fheight < h) {
|
|
|
|
int tmpw = (float)window_h / d_h * d_w * monitor_par;
|
2014-01-21 23:26:01 +00:00
|
|
|
if (tmpw <= window_w) {
|
|
|
|
fheight = window_h;
|
|
|
|
fwidth = tmpw;
|
2011-07-04 21:26:14 +00:00
|
|
|
}
|
2001-10-15 17:22:41 +00:00
|
|
|
}
|
2002-06-10 18:40:19 +00:00
|
|
|
|
2014-01-21 23:26:01 +00:00
|
|
|
int vo_panscan_area = window_h - fheight;
|
2019-06-15 15:50:41 +00:00
|
|
|
double f_w = fwidth / (double)MPMAX(fheight, 1);
|
2015-06-29 21:46:59 +00:00
|
|
|
double f_h = 1;
|
2016-04-10 15:26:32 +00:00
|
|
|
if (vo_panscan_area == 0) {
|
2014-01-21 23:26:01 +00:00
|
|
|
vo_panscan_area = window_w - fwidth;
|
2015-06-29 21:46:59 +00:00
|
|
|
f_w = 1;
|
2019-06-15 15:50:41 +00:00
|
|
|
f_h = fheight / (double)MPMAX(fwidth, 1);
|
2015-06-29 21:46:59 +00:00
|
|
|
}
|
2002-06-05 19:35:54 +00:00
|
|
|
|
2016-04-10 15:26:32 +00:00
|
|
|
if (unscaled) {
|
|
|
|
vo_panscan_area = 0;
|
2016-09-22 19:11:33 +00:00
|
|
|
if (unscaled != 2 || (d_w <= window_w && d_h <= window_h)) {
|
|
|
|
fwidth = d_w * monitor_par;
|
|
|
|
fheight = d_h;
|
2016-08-19 08:24:26 +00:00
|
|
|
}
|
2016-04-10 15:26:32 +00:00
|
|
|
}
|
|
|
|
|
2015-06-29 21:46:59 +00:00
|
|
|
*out_w = fwidth + vo_panscan_area * opts->panscan * f_w;
|
|
|
|
*out_h = fheight + vo_panscan_area * opts->panscan * f_h;
|
2009-08-27 18:36:51 +00:00
|
|
|
}
|
2014-01-21 22:47:54 +00:00
|
|
|
|
|
|
|
// Clamp [start, end) to range [0, size) with various fallbacks.
|
|
|
|
static void clamp_size(int size, int *start, int *end)
|
|
|
|
{
|
2014-01-21 23:30:40 +00:00
|
|
|
*start = MPMAX(0, *start);
|
|
|
|
*end = MPMIN(size, *end);
|
2014-01-21 22:47:54 +00:00
|
|
|
if (*start >= *end) {
|
|
|
|
*start = 0;
|
|
|
|
*end = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void src_dst_split_scaling(int src_size, int dst_size,
|
2016-04-10 15:26:32 +00:00
|
|
|
int scaled_src_size,
|
2020-06-03 15:26:08 +00:00
|
|
|
float zoom, float align, float pan, float scale,
|
2014-01-21 22:47:54 +00:00
|
|
|
int *src_start, int *src_end,
|
|
|
|
int *dst_start, int *dst_end,
|
|
|
|
int *osd_margin_a, int *osd_margin_b)
|
|
|
|
{
|
2020-06-03 15:26:08 +00:00
|
|
|
scaled_src_size *= powf(2, zoom) * scale;
|
2014-01-21 22:47:54 +00:00
|
|
|
align = (align + 1) / 2;
|
|
|
|
|
|
|
|
*src_start = 0;
|
|
|
|
*src_end = src_size;
|
|
|
|
*dst_start = (dst_size - scaled_src_size) * align + pan * scaled_src_size;
|
|
|
|
*dst_end = *dst_start + scaled_src_size;
|
|
|
|
|
2020-03-26 11:23:32 +00:00
|
|
|
// Distance of screen frame to video
|
|
|
|
*osd_margin_a = *dst_start;
|
|
|
|
*osd_margin_b = dst_size - *dst_end;
|
|
|
|
|
2014-01-21 22:47:54 +00:00
|
|
|
// Clip to screen
|
|
|
|
int s_src = *src_end - *src_start;
|
|
|
|
int s_dst = *dst_end - *dst_start;
|
|
|
|
if (*dst_start < 0) {
|
|
|
|
int border = -(*dst_start) * s_src / s_dst;
|
2015-05-21 17:27:54 +00:00
|
|
|
*src_start += border;
|
2014-01-21 22:47:54 +00:00
|
|
|
*dst_start = 0;
|
|
|
|
}
|
|
|
|
if (*dst_end > dst_size) {
|
|
|
|
int border = (*dst_end - dst_size) * s_src / s_dst;
|
2015-05-21 17:27:54 +00:00
|
|
|
*src_end -= border;
|
2014-01-21 22:47:54 +00:00
|
|
|
*dst_end = dst_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For sanity: avoid bothering VOs with corner cases
|
|
|
|
clamp_size(src_size, src_start, src_end);
|
|
|
|
clamp_size(dst_size, dst_start, dst_end);
|
|
|
|
}
|
|
|
|
|
2019-06-15 15:53:59 +00:00
|
|
|
static void calc_margin(float opts[2], int out[2], int size)
|
|
|
|
{
|
|
|
|
out[0] = MPCLAMP((int)(opts[0] * size), 0, size);
|
|
|
|
out[1] = MPCLAMP((int)(opts[1] * size), 0, size);
|
|
|
|
|
|
|
|
if (out[0] + out[1] >= size) {
|
|
|
|
// This case is not really supported. Show an error by 1 pixel.
|
|
|
|
out[0] = 0;
|
|
|
|
out[1] = MPMAX(0, size - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-21 23:26:01 +00:00
|
|
|
void mp_get_src_dst_rects(struct mp_log *log, struct mp_vo_opts *opts,
|
2014-04-20 19:36:56 +00:00
|
|
|
int vo_caps, struct mp_image_params *video,
|
2014-01-21 23:26:01 +00:00
|
|
|
int window_w, int window_h, double monitor_par,
|
|
|
|
struct mp_rect *out_src,
|
|
|
|
struct mp_rect *out_dst,
|
|
|
|
struct mp_osd_res *out_osd)
|
2014-01-21 22:47:54 +00:00
|
|
|
{
|
2014-01-21 23:26:01 +00:00
|
|
|
int src_w = video->w;
|
|
|
|
int src_h = video->h;
|
2015-12-19 19:04:31 +00:00
|
|
|
int src_dw, src_dh;
|
2019-06-15 15:53:59 +00:00
|
|
|
|
2015-12-19 19:04:31 +00:00
|
|
|
mp_image_params_get_dsize(video, &src_dw, &src_dh);
|
2014-04-20 19:36:56 +00:00
|
|
|
if (video->rotate % 180 == 90 && (vo_caps & VO_CAP_ROTATE90)) {
|
|
|
|
MPSWAP(int, src_w, src_h);
|
|
|
|
MPSWAP(int, src_dw, src_dh);
|
|
|
|
}
|
2014-01-21 23:26:01 +00:00
|
|
|
window_w = MPMAX(1, window_w);
|
|
|
|
window_h = MPMAX(1, window_h);
|
2019-06-15 15:53:59 +00:00
|
|
|
|
|
|
|
int margin_x[2] = {0};
|
|
|
|
int margin_y[2] = {0};
|
|
|
|
if (opts->keepaspect) {
|
|
|
|
calc_margin(opts->margin_x, margin_x, window_w);
|
|
|
|
calc_margin(opts->margin_y, margin_y, window_h);
|
|
|
|
}
|
|
|
|
|
|
|
|
int vid_window_w = window_w - margin_x[0] - margin_x[1];
|
|
|
|
int vid_window_h = window_h - margin_y[0] - margin_y[1];
|
|
|
|
|
2014-01-21 23:26:01 +00:00
|
|
|
struct mp_rect dst = {0, 0, window_w, window_h};
|
|
|
|
struct mp_rect src = {0, 0, src_w, src_h};
|
2014-01-21 22:47:54 +00:00
|
|
|
struct mp_osd_res osd = {
|
2014-01-21 23:26:01 +00:00
|
|
|
.w = window_w,
|
|
|
|
.h = window_h,
|
|
|
|
.display_par = monitor_par,
|
2014-01-21 22:47:54 +00:00
|
|
|
};
|
2019-06-15 15:53:59 +00:00
|
|
|
|
2014-01-21 22:47:54 +00:00
|
|
|
if (opts->keepaspect) {
|
|
|
|
int scaled_width, scaled_height;
|
2016-04-10 15:26:32 +00:00
|
|
|
aspect_calc_panscan(opts, src_w, src_h, src_dw, src_dh, opts->unscaled,
|
2019-06-15 15:53:59 +00:00
|
|
|
vid_window_w, vid_window_h, monitor_par,
|
2014-01-21 23:26:01 +00:00
|
|
|
&scaled_width, &scaled_height);
|
2019-06-15 15:53:59 +00:00
|
|
|
src_dst_split_scaling(src_w, vid_window_w, scaled_width,
|
2020-06-03 15:26:08 +00:00
|
|
|
opts->zoom, opts->align_x, opts->pan_x, opts->scale_x,
|
2014-01-21 22:47:54 +00:00
|
|
|
&src.x0, &src.x1, &dst.x0, &dst.x1,
|
|
|
|
&osd.ml, &osd.mr);
|
2019-06-15 15:53:59 +00:00
|
|
|
src_dst_split_scaling(src_h, vid_window_h, scaled_height,
|
2020-06-03 15:26:08 +00:00
|
|
|
opts->zoom, opts->align_y, opts->pan_y, opts->scale_y,
|
2014-01-21 22:47:54 +00:00
|
|
|
&src.y0, &src.y1, &dst.y0, &dst.y1,
|
|
|
|
&osd.mt, &osd.mb);
|
|
|
|
}
|
|
|
|
|
2019-06-15 15:53:59 +00:00
|
|
|
dst.x0 += margin_x[0];
|
|
|
|
dst.y0 += margin_y[0];
|
|
|
|
dst.x1 += margin_x[0];
|
|
|
|
dst.y1 += margin_y[0];
|
|
|
|
|
|
|
|
// OSD really uses the full window, but was computed on the margin-cut
|
|
|
|
// video sub-window. Correct it to the full window.
|
|
|
|
osd.ml += margin_x[0];
|
|
|
|
osd.mr += margin_x[1];
|
|
|
|
osd.mt += margin_y[0];
|
|
|
|
osd.mb += margin_y[1];
|
|
|
|
|
2014-01-21 22:47:54 +00:00
|
|
|
*out_src = src;
|
|
|
|
*out_dst = dst;
|
|
|
|
*out_osd = osd;
|
|
|
|
|
2014-01-21 23:26:01 +00:00
|
|
|
int sw = src.x1 - src.x0, sh = src.y1 - src.y0;
|
|
|
|
int dw = dst.x1 - dst.x0, dh = dst.y1 - dst.y0;
|
|
|
|
|
2019-06-15 15:53:59 +00:00
|
|
|
mp_verbose(log, "Window size: %dx%d (Borders: l=%d t=%d r=%d b=%d)\n",
|
|
|
|
window_w, window_h,
|
|
|
|
margin_x[0], margin_y[0], margin_x[1], margin_y[1]);
|
2015-12-19 19:04:31 +00:00
|
|
|
mp_verbose(log, "Video source: %dx%d (%d:%d)\n",
|
|
|
|
video->w, video->h, video->p_w, video->p_h);
|
2014-01-21 23:26:01 +00:00
|
|
|
mp_verbose(log, "Video display: (%d, %d) %dx%d -> (%d, %d) %dx%d\n",
|
|
|
|
src.x0, src.y0, sw, sh, dst.x0, dst.y0, dw, dh);
|
|
|
|
mp_verbose(log, "Video scale: %f/%f\n",
|
|
|
|
(double)dw / sw, (double)dh / sh);
|
|
|
|
mp_verbose(log, "OSD borders: l=%d t=%d r=%d b=%d\n",
|
|
|
|
osd.ml, osd.mt, osd.mr, osd.mb);
|
|
|
|
mp_verbose(log, "Video borders: l=%d t=%d r=%d b=%d\n",
|
|
|
|
dst.x0, dst.y0, window_w - dst.x1, window_h - dst.y1);
|
2014-01-21 22:47:54 +00:00
|
|
|
}
|