changeset 3614:6fef049b8fe4

Fix glitchy mpeg playback
author mswitch
date Wed, 19 Dec 2001 14:28:42 +0000
parents 8a82dca566bc
children 2a75bbac913e
files libvo/vo_dxr3.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_dxr3.c	Wed Dec 19 13:15:49 2001 +0000
+++ b/libvo/vo_dxr3.c	Wed Dec 19 14:28:42 2001 +0000
@@ -251,7 +251,7 @@
 	return 0;
     }
 
-    printf( "VO: [dxr3] Format: Unsuppomp1ed\n" );
+    printf( "VO: [dxr3] Format: Unsupported\n" );
     return -1;
 }
 
@@ -416,7 +416,7 @@
 static uint32_t
 query_format(uint32_t format)
 {
-    if(format==IMGFMT_MPEGPES) return 0x2|0x4;
+    if(format==IMGFMT_MPEGPES) return 1|256;
 #ifdef USE_MP1E
     if(format==IMGFMT_YV12) return 0x1|0x4;
     if(format==IMGFMT_YUY2) return 0x1|0x4;