summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authornick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-21 14:02:09 +0000
committernick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-21 14:02:09 +0000
commitec83776bc5a5e78598c8649b7b436d9411697042 (patch)
tree7dcbdc80dbe1ccde92d6142bee8a6bb057e760d3 /libvo
parent19b45c6859ccd5fbf6863f1a38bbc37b429c5ba2 (diff)
downloadmpv-ec83776bc5a5e78598c8649b7b436d9411697042.tar.bz2
mpv-ec83776bc5a5e78598c8649b7b436d9411697042.tar.xz
Again changed logic:
-screenw, -screenh - force user video mode -x, -y - force userdefined prescaling -zoom - activates prescaling -fs - scales prescaling to fullscreen (meaningless with -zoom) So full command line should be: mplayer -vo vesa -screenw WWW -screenh HHH -bpp BPP -x XXX -y YYY -zoom -fs filename And you will be able to watch movies in 16:9 format with bold black border at top and bottom of screen. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2336 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_vesa.c25
1 files changed, 15 insertions, 10 deletions
diff --git a/libvo/vo_vesa.c b/libvo/vo_vesa.c
index 65c2845087..f5458d6bf6 100644
--- a/libvo/vo_vesa.c
+++ b/libvo/vo_vesa.c
@@ -343,7 +343,7 @@ static char *model2str(unsigned char type)
* bit 0 (0x01) means fullscreen (-fs)
* bit 1 (0x02) means mode switching (-vm)
* bit 2 (0x04) enables software scaling (-zoom)
- * bit 3 (0x08) enables flipping (-flip)
+ * bit 3 (0x08) enables flipping (-flip) (NK: and for what?)
*/
static uint32_t
init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format)
@@ -362,7 +362,7 @@ init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint3
printf("vo_vesa: switch -flip is not supported\n");
}
if(flags & 0x04) vesa_zoom = 1;
- if(flags & 0x01) vesa_zoom = 2;
+ if(flags & 0x01 && vesa_zoom) vesa_zoom = 2;
if((err=vbeInit()) != VBE_OK) { PRINT_VBE_ERR("vbeInit",err); return -1; }
memcpy(vib.VESASignature,"VBE2",4);
if((err=vbeGetControllerInfo(&vib)) != VBE_OK)
@@ -434,8 +434,15 @@ init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint3
printf("\nvo_vesa: Modes in detail:\n");
}
mode_ptr = vib.VideoModePtr;
- w = vo_screenwidth ? vo_screenwidth : width;
- h = vo_screenheight ? vo_screenheight : height;
+ if(vesa_zoom)
+ {
+ image_width = d_width;
+ image_height= d_height;
+ }
+ if(vo_screenwidth) w = vo_screenwidth;
+ else w = max(image_width,width);
+ if(vo_screenheight) h = vo_screenheight;
+ else h = max(image_height,height);
for(i=0;i < num_modes;i++)
{
if((err=vbeGetModeInfo(mode_ptr[i],&vmib)) != VBE_OK)
@@ -497,14 +504,11 @@ init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint3
{
/* software scale */
if(vesa_zoom > 1)
- {
- image_width = video_mode_info.XResolution;
- image_height = video_mode_info.YResolution;
- }
- else
- vesa_aspect(width,height,
+ vesa_aspect(image_width,image_height,
video_mode_info.XResolution,video_mode_info.YResolution,
&image_width,&image_height);
+/* image_width = video_mode_info.XResolution;
+ image_height = video_mode_info.YResolution;*/
scale_xinc=(width << 16) / image_width - 2; /* needed for proper rounding */
scale_yinc=(height << 16) / image_height + 2;
SwScale_Init();
@@ -553,6 +557,7 @@ init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint3
PRINT_VBE_ERR("vbeSaveState",err);
return -1;
}
+/* Below 'return -1' is impossible */
if((err=vbeSetMode(video_mode,NULL)) != VBE_OK)
{
PRINT_VBE_ERR("vbeSetMode",err);