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
pull/126/head
Michael Niedermayer 18 years ago
parent ab0151d163
commit f1b37db48d
  1. 2
      libavcodec/cabac.h

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

Loading…
Cancel
Save