summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJames Darnley <jdarnley@obe.tv>2022-12-03 16:44:24 +0100
committerJames Darnley <jdarnley@obe.tv>2022-12-03 16:44:24 +0100
commit5dfb4f9690692409a4090cb9c3b05872627b267f (patch)
tree841b928fd56501ce893cc8370528854f5c665a84 /libavcodec
parente69909342e068814c27e7c9a97a5de838c5f5f92 (diff)
avcodec/x86/v210enc: change '0b' binary constant prefix to 'b' suffix
For compatability with yasm from 0.7.0
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/x86/v210enc.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/v210enc.asm b/libavcodec/x86/v210enc.asm
index daf5f2ab81..bbad1589c4 100644
--- a/libavcodec/x86/v210enc.asm
+++ b/libavcodec/x86/v210enc.asm
@@ -70,8 +70,8 @@ icl_perm_uv: ; vpermb does not set bytes to zero when the high bit is set unlike
%assign i i+6
%endrep
-icl_perm_y_kmask: times 8 db 0b1111_0110
-icl_perm_uv_kmask: times 8 db 0b0110_1111
+icl_perm_y_kmask: times 8 db 1111_0110b
+icl_perm_uv_kmask: times 8 db 0110_1111b
icl_shift_y: times 10 dw 2,0,4
times 4 db 0 ; padding to 64 bytes