diff options
author | James Almer <jamrial@gmail.com> | 2015-07-26 02:28:16 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-07-26 02:50:14 -0300 |
commit | 844bef578ee0994a94bdd6ffe4099dddd6a9f136 (patch) | |
tree | 6d74691b444692f7aa168ca3c0ee0e0ce8dfa593 /libavcodec/x86/hevc_sao.asm | |
parent | 379ddc6af44f0c2f3cb517bcc5664610aef9bfc0 (diff) | |
download | ffmpeg-844bef578ee0994a94bdd6ffe4099dddd6a9f136.tar.gz |
avcodec/x86: add missing colon to labels
Silences warnings with Nasm
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/x86/hevc_sao.asm')
-rw-r--r-- | libavcodec/x86/hevc_sao.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/hevc_sao.asm b/libavcodec/x86/hevc_sao.asm index 86ef847ba2..2461740bf3 100644 --- a/libavcodec/x86/hevc_sao.asm +++ b/libavcodec/x86/hevc_sao.asm @@ -141,7 +141,7 @@ cglobal hevc_sao_band_filter_%1_8, 6, 6, 15, 7*mmsize*ARCH_X86_32, dst, src, dst HEVC_SAO_BAND_FILTER_INIT 8 align 16 -.loop +.loop: %if %1 == 8 movq m8, [srcq] punpcklbw m8, m14 @@ -191,7 +191,7 @@ cglobal hevc_sao_band_filter_%2_%1, 6, 6, 15, 7*mmsize*ARCH_X86_32, dst, src, ds HEVC_SAO_BAND_FILTER_INIT %1 align 16 -.loop +.loop: %if %2 == 8 movu m8, [srcq] HEVC_SAO_BAND_FILTER_COMPUTE %1, m9, m8 @@ -528,7 +528,7 @@ cglobal hevc_sao_edge_filter_%2_%1, 1, 6, 8, 5*mmsize, dst, src, dststride, a_st %endif align 16 -.loop +.loop: %if %2 == 8 mova m1, [srcq] |