Mercurial > mplayer.hg
view input/joystick.h @ 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 | 610a11e4db36 |
children | 6ac1ece1f9fe |
line wrap: on
line source
#define JOY_BASE (0x100+128) #define JOY_AXIS0_PLUS (JOY_BASE+0) #define JOY_AXIS0_MINUS (JOY_BASE+1) #define JOY_AXIS1_PLUS (JOY_BASE+2) #define JOY_AXIS1_MINUS (JOY_BASE+3) #define JOY_AXIS2_PLUS (JOY_BASE+4) #define JOY_AXIS2_MINUS (JOY_BASE+5) #define JOY_AXIS3_PLUS (JOY_BASE+6) #define JOY_AXIS3_MINUS (JOY_BASE+7) #define JOY_AXIS4_PLUS (JOY_BASE+8) #define JOY_AXIS4_MINUS (JOY_BASE+9) #define JOY_AXIS5_PLUS (JOY_BASE+10) #define JOY_AXIS5_MINUS (JOY_BASE+11) #define JOY_AXIS6_PLUS (JOY_BASE+12) #define JOY_AXIS6_MINUS (JOY_BASE+13) #define JOY_AXIS7_PLUS (JOY_BASE+14) #define JOY_AXIS7_MINUS (JOY_BASE+15) #define JOY_AXIS8_PLUS (JOY_BASE+16) #define JOY_AXIS8_MINUS (JOY_BASE+17) #define JOY_AXIS9_PLUS (JOY_BASE+18) #define JOY_AXIS9_MINUS (JOY_BASE+19) #define JOY_BTN_BASE ((0x100+148)|MP_NO_REPEAT_KEY) #define JOY_BTN0 (JOY_BTN_BASE+0) #define JOY_BTN1 (JOY_BTN_BASE+1) #define JOY_BTN2 (JOY_BTN_BASE+2) #define JOY_BTN3 (JOY_BTN_BASE+3) #define JOY_BTN4 (JOY_BTN_BASE+4) #define JOY_BTN5 (JOY_BTN_BASE+5) #define JOY_BTN6 (JOY_BTN_BASE+6) #define JOY_BTN7 (JOY_BTN_BASE+7) #define JOY_BTN8 (JOY_BTN_BASE+8) #define JOY_BTN9 (JOY_BTN_BASE+9) int mp_input_joystick_init(char* dev); int mp_input_joystick_read(int fd);