move the &1 out of the asm so gcc can optimize it away in inlined cases (yes this is slightly faster)

Originally committed as revision 6616 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2006-10-10 01:17:39 +00:00
parent ab0151d163
commit f1b37db48d

View File

@ -512,11 +512,11 @@ static int get_cabac(CABACContext *c, uint8_t * const state){
"1: \n\t"
"movl %%edx, "RANGE "(%2) \n\t"
"movl %%ebx, "LOW "(%2) \n\t"
"andl $1, %%eax \n\t"
:"=&a"(bit)
:"r"(state), "r"(c)
: "%ecx", "%ebx", "%edx", "%esi"
);
bit&=1;
#endif
#else
int s = *state;