diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2010-10-31 13:46:17 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2010-10-31 13:46:17 +0000 |
commit | e2d13c5882502de88a67c6bfa9ef222546681caa (patch) | |
tree | ca2421f4f46bb52ff43ec9da3fd719030d045dea | |
parent | 0d729e0de28d8f57fec26792942f7aa9bf37ba70 (diff) | |
download | ffmpeg-e2d13c5882502de88a67c6bfa9ef222546681caa.tar.gz |
cosmetics: split long line
Originally committed as revision 25610 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/x86/fdct_mmx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/x86/fdct_mmx.c b/libavcodec/x86/fdct_mmx.c index e55d306641..c79a8df04c 100644 --- a/libavcodec/x86/fdct_mmx.c +++ b/libavcodec/x86/fdct_mmx.c @@ -431,7 +431,8 @@ static av_always_inline void fdct_row_sse2(const int16_t *in, int16_t *out) FDCT_ROW_SSE2_H2(80,192) FDCT_ROW_SSE2(80) : - : "r" (in), "r" (tab_frw_01234567_sse2.tab_frw_01234567_sse2), "r" (fdct_r_row_sse2.fdct_r_row_sse2), "i" (SHIFT_FRW_ROW), "r" (out) + : "r" (in), "r" (tab_frw_01234567_sse2.tab_frw_01234567_sse2), + "r" (fdct_r_row_sse2.fdct_r_row_sse2), "i" (SHIFT_FRW_ROW), "r" (out) XMM_CLOBBERS_ONLY("%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7") ); |