mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
befc528297
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28481 b3059339-0415-0410-9bf9-f77b7e298cf2
161 lines
4.4 KiB
C
161 lines
4.4 KiB
C
/*
|
|
* This file is part of MPlayer.
|
|
*
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
/* Stuff for correct aspect scaling. */
|
|
#include "aspect.h"
|
|
#include "geometry.h"
|
|
//#ifndef ASPECT_TEST
|
|
#include "mp_msg.h"
|
|
#include "help_mp.h"
|
|
//#endif
|
|
|
|
//#define ASPECT_DEBUG
|
|
|
|
#if defined(ASPECT_DEBUG) || defined(ASPECT_TEST)
|
|
#include <stdio.h>
|
|
#endif
|
|
|
|
int vo_panscan_x = 0;
|
|
int vo_panscan_y = 0;
|
|
float vo_panscan_amount = 0;
|
|
float vo_panscanrange = 1.0;
|
|
|
|
#include "video_out.h"
|
|
|
|
float force_monitor_aspect=0;
|
|
float monitor_aspect=0;
|
|
float monitor_pixel_aspect=1;
|
|
extern float movie_aspect;
|
|
|
|
static struct {
|
|
int orgw; // real width
|
|
int orgh; // real height
|
|
int prew; // prescaled width
|
|
int preh; // prescaled height
|
|
int scrw; // horizontal resolution
|
|
int scrh; // vertical resolution
|
|
float asp;
|
|
} aspdat;
|
|
|
|
void aspect_save_orig(int orgw, int orgh){
|
|
#ifdef ASPECT_DEBUG
|
|
printf("aspect_save_orig %dx%d \n",orgw,orgh);
|
|
#endif
|
|
aspdat.orgw = orgw;
|
|
aspdat.orgh = orgh;
|
|
}
|
|
|
|
void aspect_save_prescale(int prew, int preh){
|
|
#ifdef ASPECT_DEBUG
|
|
printf("aspect_save_prescale %dx%d \n",prew,preh);
|
|
#endif
|
|
aspdat.prew = prew;
|
|
aspdat.preh = preh;
|
|
}
|
|
|
|
void aspect_save_screenres(int scrw, int scrh){
|
|
#ifdef ASPECT_DEBUG
|
|
printf("aspect_save_screenres %dx%d \n",scrw,scrh);
|
|
#endif
|
|
aspdat.scrw = scrw;
|
|
aspdat.scrh = scrh;
|
|
if (force_monitor_aspect)
|
|
monitor_aspect = force_monitor_aspect;
|
|
else
|
|
monitor_aspect = monitor_pixel_aspect * scrw / scrh;
|
|
}
|
|
|
|
/* aspect is called with the source resolution and the
|
|
* resolution, that the scaled image should fit into
|
|
*/
|
|
|
|
void aspect_fit(int *srcw, int *srch, int fitw, int fith){
|
|
int tmpw;
|
|
|
|
#ifdef ASPECT_DEBUG
|
|
printf("aspect(0) fitin: %dx%d screenaspect: %.2f\n",aspdat.scrw,aspdat.scrh,
|
|
monitor_aspect);
|
|
printf("aspect(1) wh: %dx%d (org: %dx%d)\n",*srcw,*srch,aspdat.prew,aspdat.preh);
|
|
#endif
|
|
*srcw = fitw;
|
|
*srch = (int)(((float)fitw / (float)aspdat.prew * (float)aspdat.preh)
|
|
* ((float)aspdat.scrh / ((float)aspdat.scrw / monitor_aspect)));
|
|
*srch+= *srch%2; // round
|
|
#ifdef ASPECT_DEBUG
|
|
printf("aspect(2) wh: %dx%d (org: %dx%d)\n",*srcw,*srch,aspdat.prew,aspdat.preh);
|
|
#endif
|
|
if(*srch>aspdat.scrh || *srch<aspdat.orgh){
|
|
tmpw = (int)(((float)fith / (float)aspdat.preh * (float)aspdat.prew)
|
|
* ((float)aspdat.scrw / ((float)aspdat.scrh / (1.0/monitor_aspect))));
|
|
tmpw+= tmpw%2; // round
|
|
if(tmpw<=aspdat.scrw /*&& tmpw>=aspdat.orgw*/){
|
|
*srch = fith;
|
|
*srcw = tmpw;
|
|
}else{
|
|
#ifndef ASPECT_TEST
|
|
mp_msg(MSGT_VO,MSGL_WARN,MSGTR_LIBVO_ASPECT_NoSuitableNewResFound);
|
|
#else
|
|
mp_msg(MSGT_VO,MSGL_WARN,MSGTR_LIBVO_ASPECT_NoNewSizeFoundThatFitsIntoRes);
|
|
#endif
|
|
}
|
|
}
|
|
aspdat.asp=*srcw / (float)*srch;
|
|
#ifdef ASPECT_DEBUG
|
|
printf("aspect(3) wh: %dx%d (org: %dx%d)\n",*srcw,*srch,aspdat.prew,aspdat.preh);
|
|
#endif
|
|
}
|
|
|
|
void aspect(int *srcw, int *srch, int zoom){
|
|
int fitw = zoom ? aspdat.scrw : aspdat.prew;
|
|
int fith = zoom ? aspdat.scrh : aspdat.preh;
|
|
if( !zoom && geometry_wh_changed ) {
|
|
#ifdef ASPECT_DEBUG
|
|
printf("aspect(0) no aspect forced!\n");
|
|
#endif
|
|
return; // the user doesn't want to fix aspect
|
|
}
|
|
aspect_fit(srcw, srch, fitw, fith);
|
|
}
|
|
|
|
void panscan_init( void )
|
|
{
|
|
vo_panscan_x=0;
|
|
vo_panscan_y=0;
|
|
vo_panscan_amount=0.0f;
|
|
}
|
|
|
|
void panscan_calc( void )
|
|
{
|
|
int fwidth,fheight;
|
|
int vo_panscan_area;
|
|
|
|
if (vo_panscanrange > 0) {
|
|
aspect(&fwidth,&fheight,A_ZOOM);
|
|
vo_panscan_area = (aspdat.scrh-fheight);
|
|
if (!vo_panscan_area)
|
|
vo_panscan_area = aspdat.scrw - fwidth;
|
|
vo_panscan_area *= vo_panscanrange;
|
|
} else
|
|
vo_panscan_area = -vo_panscanrange * aspdat.scrh;
|
|
|
|
vo_panscan_amount = vo_fs ? vo_panscan : 0;
|
|
vo_panscan_x = vo_panscan_area * vo_panscan_amount * aspdat.asp;
|
|
vo_panscan_y = vo_panscan_area * vo_panscan_amount;
|
|
}
|
|
|