Mercurial > mplayer.hg
annotate TVout/fbset.db @ 1306:7ce37211e454
yuv2rgb_mmx crashes with ffdivx codec, when we play back avi files that have
a frame width that is not an exact multiple of 8.
Testcase: 405.avi (356x240). Playing on an MMX capable x86 system using the
x11 video-out driver results in a segfault.
The MMX routines convert image data in quantities of 8 pixels in each loop,
and the inner loop was not terminated in case there are only 1-7 pixels left,
producing too much RGB output.
For now, just ignore the last few pixels on each row, to avoid the segfaults.
(Gives a black vertical border on the right, if you play a video with
width%8 != 0) A possible future enhancement would be, to add a second loop
to convert the last width%8 pixels to RGB using a byte loop.
author | jkeil |
---|---|
date | Thu, 12 Jul 2001 15:23:26 +0000 |
parents | 3b5f5d1c5041 |
children |
rev | line source |
---|---|
1 | 1 |
2 # FBset mode database | |
3 | |
4 mode "640x480" # H: 33.78 kHz, V: 67.56 Hz | |
5 geometry 640 480 640 480 4 | |
6 timings 35242 24 64 17 1 112 2 | |
7 endmode | |
8 | |
9 mode "640x480-60" | |
10 # D: 25.176 MHz, H: 31.469 kHz, V: 59.942 Hz | |
11 geometry 640 480 640 480 16 | |
12 timings 39721 48 16 33 10 96 2 | |
13 hsync high | |
14 accel true | |
15 # rgba 5/11,6/5,5/0,0/0 | |
16 endmode | |
17 | |
18 mode "640x400-60" | |
19 # D: 25.176 MHz, H: 31.469 kHz, V: 59.942 Hz | |
20 geometry 640 400 640 400 16 | |
21 timings 39721 48 16 33 10 96 2 | |
22 hsync high | |
23 accel true | |
24 # rgba 5/11,6/5,5/0,0/0 | |
25 endmode | |
26 | |
27 mode "vga70" | |
28 # H: 31.113 kHz, V: 69.294 Hz | |
29 geometry 640 400 640 400 4 | |
30 timings 35242 64 96 35 12 112 2 | |
31 # vsync high | |
32 # csync high | |
33 endmode | |
34 |