comparison cabac.h @ 6505:3ce9c8fbdd81 libavcodec

cosmetics: remove useless \-newline escapes
author mru
date Mon, 17 Mar 2008 21:00:30 +0000
parents 8b119a5a0644
children e5967b1cc475
comparison
equal deleted inserted replaced
6504:978911ca654f 6505:3ce9c8fbdd81
729 "add %6, %%eax \n\t" 729 "add %6, %%eax \n\t"
730 "shr $2, %%eax \n\t" 730 "shr $2, %%eax \n\t"
731 731
732 "movl %%esi, "RANGE "(%3) \n\t" 732 "movl %%esi, "RANGE "(%3) \n\t"
733 "movl %%ebx, "LOW "(%3) \n\t" 733 "movl %%ebx, "LOW "(%3) \n\t"
734 :"=&a"(coeff_count), "+r"(significant_coeff_ctx_base), "+m"(index)\ 734 :"=&a"(coeff_count), "+r"(significant_coeff_ctx_base), "+m"(index)
735 :"r"(c), "m"(minusstart), "m"(end), "m"(minusindex)\ 735 :"r"(c), "m"(minusstart), "m"(end), "m"(minusindex)
736 : "%"REG_c, "%ebx", "%edx", "%esi", "memory"\ 736 : "%"REG_c, "%ebx", "%edx", "%esi", "memory"
737 ); 737 );
738 return coeff_count; 738 return coeff_count;
739 } 739 }
740 740
741 static int decode_significance_8x8_x86(CABACContext *c, uint8_t *significant_coeff_ctx_base, int *index, const uint8_t *sig_off){ 741 static int decode_significance_8x8_x86(CABACContext *c, uint8_t *significant_coeff_ctx_base, int *index, const uint8_t *sig_off){
785 "addl %4, %%eax \n\t" 785 "addl %4, %%eax \n\t"
786 "shr $2, %%eax \n\t" 786 "shr $2, %%eax \n\t"
787 787
788 "movl %%esi, "RANGE "(%3) \n\t" 788 "movl %%esi, "RANGE "(%3) \n\t"
789 "movl %%ebx, "LOW "(%3) \n\t" 789 "movl %%ebx, "LOW "(%3) \n\t"
790 :"=&a"(coeff_count),"+m"(last), "+m"(index)\ 790 :"=&a"(coeff_count),"+m"(last), "+m"(index)
791 :"r"(c), "m"(minusindex), "m"(significant_coeff_ctx_base), "m"(sig_off)\ 791 :"r"(c), "m"(minusindex), "m"(significant_coeff_ctx_base), "m"(sig_off)
792 : "%"REG_c, "%ebx", "%edx", "%esi", "%"REG_D, "memory"\ 792 : "%"REG_c, "%ebx", "%edx", "%esi", "%"REG_D, "memory"
793 ); 793 );
794 return coeff_count; 794 return coeff_count;
795 } 795 }
796 #endif /* defined(ARCH_X86) && && defined(HAVE_7REGS) && defined(HAVE_EBX_AVAILABLE) && !defined(BROKEN_RELOCATIONS) */ 796 #endif /* defined(ARCH_X86) && && defined(HAVE_7REGS) && defined(HAVE_EBX_AVAILABLE) && !defined(BROKEN_RELOCATIONS) */
797 797