summaryrefslogtreecommitdiffstats
path: root/libvo/vo_dxr3.c
diff options
context:
space:
mode:
authormswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-09 11:15:11 +0000
committermswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-09 11:15:11 +0000
commitf31c512e5d2606a9b1c99f138ad5579fdca0e422 (patch)
tree1ae9c132694e321b32f1e3084694fbb113addf9d /libvo/vo_dxr3.c
parent2fd7d64a4778030a4772bfcdb81a535e0dcd2680 (diff)
downloadmpv-f31c512e5d2606a9b1c99f138ad5579fdca0e422.tar.bz2
mpv-f31c512e5d2606a9b1c99f138ad5579fdca0e422.tar.xz
ARGH, changing playback speed was a mistake...
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4605 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_dxr3.c')
-rw-r--r--libvo/vo_dxr3.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libvo/vo_dxr3.c b/libvo/vo_dxr3.c
index fd6e9daa9d..9a283060bf 100644
--- a/libvo/vo_dxr3.c
+++ b/libvo/vo_dxr3.c
@@ -328,10 +328,6 @@ static uint32_t draw_frame(uint8_t * src[])
static void flip_page(void)
{
- if (!vo_pts) {
- ioval = (90000.0 / vo_fps);
- ioctl(fd_control, EM8300_IOCTL_SCR_SETSPEED, &ioval);
- }
#ifdef USE_LIBAVCODEC
if (img_format == IMGFMT_YV12) {
int out_size = avcodec_encode_video(avc_context, avc_outbuf, avc_outbuf_size, &avc_picture);
@@ -393,9 +389,6 @@ static uint32_t draw_slice(uint8_t *srcimg[], int stride[], int w, int h, int x0
static void uninit(void)
{
printf("VO: [dxr3] Uninitializing\n");
- /* Set the default playback speed to 0x900 */
- ioval = 0x900;
- ioctl(fd_control, EM8300_IOCTL_SCR_SETSPEED, &ioval);
#ifdef USE_LIBAVCODEC
if (avc_context) {
avcodec_close(avc_context);