diff options
author | James Almer <jamrial@gmail.com> | 2014-07-28 16:17:34 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-28 21:43:32 +0200 |
commit | f137876182f65e0d2f5f46b31543346d73d03105 (patch) | |
tree | e27c7c1e11cee4ccb9bc7ebaa018b5e9c288c334 | |
parent | 1e51af13c7538f427e8a0cf0e498263de674c70e (diff) | |
download | ffmpeg-f137876182f65e0d2f5f46b31543346d73d03105.tar.gz |
x86/hevc_idct: add a colon to labels
This fixes a warning spam when using NASM
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/hevc_idct.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/hevc_idct.asm b/libavcodec/x86/hevc_idct.asm index 2ad6e973ac..481726d217 100644 --- a/libavcodec/x86/hevc_idct.asm +++ b/libavcodec/x86/hevc_idct.asm @@ -36,7 +36,7 @@ cglobal hevc_idct%1x%1_dc_%3, 1, 2, 1, coeff, tmp SPLATW m0, xm0 DEFINE_ARGS coeff, cnt mov cntd, %2 -.loop +.loop: mova [coeffq+mmsize*0], m0 mova [coeffq+mmsize*1], m0 mova [coeffq+mmsize*2], m0 |