Browse code

cosmetics: remove useless \-newline escapes

Originally committed as revision 12479 to svn://svn.ffmpeg.org/ffmpeg/trunk

Måns Rullgård authored on 2008/03/18 06:00:30
Showing 1 changed files
... ...
@@ -731,9 +731,9 @@ static int decode_significance_x86(CABACContext *c, int max_coeff, uint8_t *sign
731 731
 
732 732
         "movl %%esi, "RANGE    "(%3)            \n\t"
733 733
         "movl %%ebx, "LOW      "(%3)            \n\t"
734
-        :"=&a"(coeff_count), "+r"(significant_coeff_ctx_base), "+m"(index)\
735
-        :"r"(c), "m"(minusstart), "m"(end), "m"(minusindex)\
736
-        : "%"REG_c, "%ebx", "%edx", "%esi", "memory"\
734
+        :"=&a"(coeff_count), "+r"(significant_coeff_ctx_base), "+m"(index)
735
+        :"r"(c), "m"(minusstart), "m"(end), "m"(minusindex)
736
+        : "%"REG_c, "%ebx", "%edx", "%esi", "memory"
737 737
     );
738 738
     return coeff_count;
739 739
 }
... ...
@@ -787,9 +787,9 @@ static int decode_significance_8x8_x86(CABACContext *c, uint8_t *significant_coe
787 787
 
788 788
         "movl %%esi, "RANGE    "(%3)            \n\t"
789 789
         "movl %%ebx, "LOW      "(%3)            \n\t"
790
-        :"=&a"(coeff_count),"+m"(last), "+m"(index)\
791
-        :"r"(c), "m"(minusindex), "m"(significant_coeff_ctx_base), "m"(sig_off)\
792
-        : "%"REG_c, "%ebx", "%edx", "%esi", "%"REG_D, "memory"\
790
+        :"=&a"(coeff_count),"+m"(last), "+m"(index)
791
+        :"r"(c), "m"(minusindex), "m"(significant_coeff_ctx_base), "m"(sig_off)
792
+        : "%"REG_c, "%ebx", "%edx", "%esi", "%"REG_D, "memory"
793 793
     );
794 794
     return coeff_count;
795 795
 }