diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-03-17 10:16:13 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-10-17 16:31:26 +0200 |
commit | 6be7944ee2ec2f045e6eb9a93237e992c8b20ac4 (patch) | |
tree | 5b5078d803bbe116620a2c0ce77acb437fa5c110 /libavcodec/x86/h264_qpel_10bit.asm | |
parent | 2816f8a8bb33bd67fec5e94f5d357918caf4e055 (diff) | |
download | ffmpeg-6be7944ee2ec2f045e6eb9a93237e992c8b20ac4.tar.gz |
x86: Add missing colons after assembly labels
This fixes many warnings of the sort
warning: label alone on a line without a colon might be in error
Diffstat (limited to 'libavcodec/x86/h264_qpel_10bit.asm')
-rw-r--r-- | libavcodec/x86/h264_qpel_10bit.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/h264_qpel_10bit.asm b/libavcodec/x86/h264_qpel_10bit.asm index f92c4aab2b..4557e5e209 100644 --- a/libavcodec/x86/h264_qpel_10bit.asm +++ b/libavcodec/x86/h264_qpel_10bit.asm @@ -386,7 +386,7 @@ MC_CACHE MC10 ; void ff_h264_qpel_mc02(uint8_t *dst, uint8_t *src, int stride) ;----------------------------------------------------------------------------- %macro V_FILT 10 -v_filt%9_%10_10 +v_filt%9_%10_10: add r4, r2 .no_addr4: FILT_V m0, m1, m2, m3, m4, m5, m6, m7 |