annotate mp3lib/mp3lib_objfix.sh @ 4758:1d41ac612fb7
Fixes:
- every line of movie is displayed instead of every odd before
(v_inc: 11 -> 12; pitch -> pitch/2)
- awful colored window on start
(reset_regs: OUTREG(i,-1) -> OUTREG(i,0))
- YVYU fourcc displaying
(SCALE_CNTL: 0xb0000 -> 0xc0000)
- correct vertical scaling in double scan in interlaced modes
(see y_x_start(end))
Note: tested 3DRage IIC doesn't support neihgter YV12 nor color correction
so Michael should test and fix again these changes. Sorry!
author |
nick |
date |
Tue, 19 Feb 2002 16:23:02 +0000 |
parents |
f1efe9e55647 |
children |
d3b889d54a7a |
rev |
line source |
4244
|
1 #!/bin/sh
|
|
2 # This script fixes up symbol mangling in GNU as code of mp3lib.
|
|
3 # (c)2001-2002 by Felix Buenemann <atmosfear at users.sourceforge.net>A
|
|
4 # This file is licensed under the GPL, more info at http://www.fsf.org/
|
|
5 for i in \
|
|
6 "CpuDetect" \
|
|
7 "ipentium" \
|
|
8 "a3dnow" \
|
|
9 "isse"
|
|
10 do
|
|
11 echo "fixing: $i=_$i"
|
|
12 objcopy --redefine-sym "$i=_$i" libMP3.a
|
|
13 done
|
|
14
|