Mercurial > mplayer.hg
annotate TOOLS/mpconsole @ 22830:1d4a455af876
Set CONFIG_EBP_AVAILABLE, CONFIG_EBX_AVAILABLE for FFmpeg
After FFmpeg r8549 these variables are used in libavcodec to determine
whether x86 inline asm sections using these registers or requiring a
certain total number of total free registers are enabled. Because they
were not set by MPlayer configure some H264 decoding optimizations were
disabled after that FFmpeg version. This change sets the variables to
true unconditionally which should restore previous behavior. Adding
proper detection is left for later.
EBX should always be available because internal libavcodec is never
compiled with PIC. However if -fomit-frame-pointer is not used because
of --enable-debug then EBP is not available. Thus proper detection would
be preferable to fix compilation with --enable-debug on x86. Currently
the variables are also set on non-x86 which should be harmless even if
somewhat ugly.
author | uau |
---|---|
date | Fri, 30 Mar 2007 22:57:04 +0000 |
parents | a818bbab1525 |
children |
rev | line source |
---|---|
4204
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
1 #!/bin/sh |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
2 # Script to run mplayer on the console (fbdev/mga_vid/etc) without |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
3 # the console text and/or flashing cursor getting in the way. |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
4 # Written by Rich Felker. |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
5 |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
6 trap "tput cnorm ; exit 1" SIGQUIT SIGINT EXIT |
7696
a818bbab1525
Fix usage for common users that may not have fbset in their path.
diego
parents:
4204
diff
changeset
|
7 res=`PATH="$PATH:/usr/sbin" fbset | grep geometry | sed 's/^ *//'` |
4204
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
8 width=`echo "$res" | cut -d' ' -f2` |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
9 height=`echo "$res" | cut -d' ' -f3` |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
10 tput civis |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
11 clear |
a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
arpi
parents:
diff
changeset
|
12 mplayer -vo mga -screenw "$width" -screenh "$height" "$@" >/dev/null 2>&1 |