diff options
author | Måns Rullgård <mans@mansr.com> | 2008-03-17 21:00:30 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-03-17 21:00:30 +0000 |
commit | ea68e334692e2d816eba7bf450431739d674dbae (patch) | |
tree | 70c6a31452fafed86b4522734a645e6a1659303b /libavcodec/cabac.h | |
parent | 4f54a3b8b42db6ac8a696297fc12aeb5238900b1 (diff) | |
download | ffmpeg-ea68e334692e2d816eba7bf450431739d674dbae.tar.gz |
cosmetics: remove useless \-newline escapes
Originally committed as revision 12479 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r-- | libavcodec/cabac.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index 6d5a6f1708..ea2ee3e4e6 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -731,9 +731,9 @@ static int decode_significance_x86(CABACContext *c, int max_coeff, uint8_t *sign "movl %%esi, "RANGE "(%3) \n\t" "movl %%ebx, "LOW "(%3) \n\t" - :"=&a"(coeff_count), "+r"(significant_coeff_ctx_base), "+m"(index)\ - :"r"(c), "m"(minusstart), "m"(end), "m"(minusindex)\ - : "%"REG_c, "%ebx", "%edx", "%esi", "memory"\ + :"=&a"(coeff_count), "+r"(significant_coeff_ctx_base), "+m"(index) + :"r"(c), "m"(minusstart), "m"(end), "m"(minusindex) + : "%"REG_c, "%ebx", "%edx", "%esi", "memory" ); return coeff_count; } @@ -787,9 +787,9 @@ static int decode_significance_8x8_x86(CABACContext *c, uint8_t *significant_coe "movl %%esi, "RANGE "(%3) \n\t" "movl %%ebx, "LOW "(%3) \n\t" - :"=&a"(coeff_count),"+m"(last), "+m"(index)\ - :"r"(c), "m"(minusindex), "m"(significant_coeff_ctx_base), "m"(sig_off)\ - : "%"REG_c, "%ebx", "%edx", "%esi", "%"REG_D, "memory"\ + :"=&a"(coeff_count),"+m"(last), "+m"(index) + :"r"(c), "m"(minusindex), "m"(significant_coeff_ctx_base), "m"(sig_off) + : "%"REG_c, "%ebx", "%edx", "%esi", "%"REG_D, "memory" ); return coeff_count; } |