1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avcodec/x86/v210enc: change '0b' binary constant prefix to 'b' suffix

For compatability with yasm from 0.7.0
This commit is contained in:
James Darnley
2022-12-03 16:44:24 +01:00
parent e69909342e
commit 5dfb4f9690

View File

@@ -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 %assign i i+6
%endrep %endrep
icl_perm_y_kmask: times 8 db 0b1111_0110 icl_perm_y_kmask: times 8 db 1111_0110b
icl_perm_uv_kmask: times 8 db 0b0110_1111 icl_perm_uv_kmask: times 8 db 0110_1111b
icl_shift_y: times 10 dw 2,0,4 icl_shift_y: times 10 dw 2,0,4
times 4 db 0 ; padding to 64 bytes times 4 db 0 ; padding to 64 bytes