diff options
author | mswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-12-19 14:28:42 +0000 |
---|---|---|
committer | mswitch <mswitch@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-12-19 14:28:42 +0000 |
commit | 343b941007ac2043bf0dc3479d656db9943d8c27 (patch) | |
tree | 02aac8b0f092f2b8712bce53eaf58a7bd6cc1691 /libvo/vo_dxr3.c | |
parent | 7139cf34089e07ddf5e331605cf159aa413503be (diff) |
Fix glitchy mpeg playback
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3615 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_dxr3.c')
-rw-r--r-- | libvo/vo_dxr3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_dxr3.c b/libvo/vo_dxr3.c index f00c42a66c..434f62956b 100644 --- a/libvo/vo_dxr3.c +++ b/libvo/vo_dxr3.c @@ -251,7 +251,7 @@ static uint32_t init(uint32_t scr_width, uint32_t scr_height, uint32_t width, ui return 0; } - printf( "VO: [dxr3] Format: Unsuppomp1ed\n" ); + printf( "VO: [dxr3] Format: Unsupported\n" ); return -1; } @@ -416,7 +416,7 @@ static uint32_t draw_slice( uint8_t *srcimg[], int stride[], int w, int h, int x 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; |