diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-10-20 08:46:33 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-10-20 08:46:33 +0000 |
commit | d3e7c5c35be22adb9964a25c434cf3f2f3ea816d (patch) | |
tree | cc88940091bc9baca779744383c1bfa783b10947 | |
parent | e7768fc512cbe6bc22fd5d0bc22bbf4c95001e9a (diff) | |
download | ffmpeg-d3e7c5c35be22adb9964a25c434cf3f2f3ea816d.tar.gz |
1 instruction less
Originally committed as revision 6743 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/cabac.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index 5cf1a9e39d..592fe1313a 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -696,11 +696,12 @@ static int decode_significance_x86(CABACContext *c, int max_coeff, uint8_t *sign "addl %1, %%ecx \n\t" "movl %%ecx, (%%eax) \n\t" "addl $4, %%eax \n\t" - "movl %%eax, %2 \n\t" "test $1, %%edx \n\t" " jnz 4f \n\t" + "movl %%eax, %2 \n\t" + "3: \n\t" "addl $1, %1 \n\t" "cmpl %5, %1 \n\t" |