summaryrefslogtreecommitdiffstats
path: root/libvo/vo_dxr3.c
diff options
context:
space:
mode:
authormswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-13 14:39:24 +0000
committermswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-13 14:39:24 +0000
commit301dd8f013258480609fb6b88893de635710e270 (patch)
tree9e32163054c8d9b163677c749df056a85fbe8fcd /libvo/vo_dxr3.c
parent37b0b315599086727f277ff903426b2ccef678a7 (diff)
downloadmpv-301dd8f013258480609fb6b88893de635710e270.tar.bz2
mpv-301dd8f013258480609fb6b88893de635710e270.tar.xz
This will slow down wobbling (just a bit)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5066 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_dxr3.c')
-rw-r--r--libvo/vo_dxr3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_dxr3.c b/libvo/vo_dxr3.c
index f6b4af1ed7..8787c4356d 100644
--- a/libvo/vo_dxr3.c
+++ b/libvo/vo_dxr3.c
@@ -233,10 +233,10 @@ static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32
ioctl(fd_control, EM8300_IOCTL_GET_VIDEOMODE, &ioval);
if (ioval == EM8300_VIDEOMODE_NTSC) {
printf("VO: [dxr3] Setting up for NTSC.\n");
- aspect_save_screenres((352 * 2), 240);
+ aspect_save_screenres(352, 240);
} else {
printf("VO: [dxr3] Setting up for PAL/SECAM.\n");
- aspect_save_screenres((352 * 2), 288);
+ aspect_save_screenres(352, 288);
}
aspect(&s_width, &s_height, A_ZOOM);
s_width -= s_width % 16;