diff options
author | Rémi Denis-Courmont <remi@remlab.net> | 2024-11-16 08:58:35 +0200 |
---|---|---|
committer | Rémi Denis-Courmont <remi@remlab.net> | 2024-11-17 11:28:21 +0200 |
commit | 690c015758dcbf08dd53b95981a65ccb9687dfa4 (patch) | |
tree | 3ab30e076f806fc5e11ff59b7013d53abf0504c7 | |
parent | 1d55f548466516a6a4ed4cc67e118e1c29c6ae5a (diff) | |
download | ffmpeg-690c015758dcbf08dd53b95981a65ccb9687dfa4.tar.gz |
lavc/h264dsp: remove RISC-V table alignment
These values are bytes and need not be aligned.
-rw-r--r-- | libavcodec/riscv/h264idct_rvv.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/riscv/h264idct_rvv.S b/libavcodec/riscv/h264idct_rvv.S index d2f77a5b47..fda1f37a3c 100644 --- a/libavcodec/riscv/h264idct_rvv.S +++ b/libavcodec/riscv/h264idct_rvv.S @@ -542,7 +542,7 @@ func ff_h264_idct8_dc_add_\depth\()_rvv, zve64x endfunc .endr -const ff_h264_scan8 +const ff_h264_scan8, align=0 .byte 014, 015, 024, 025, 016, 017, 026, 027 .byte 034, 035, 044, 045, 036, 037, 046, 047 .byte 064, 065, 074, 075, 066, 067, 076, 077 |