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 | fd8cbfec3d2dbfc82960ddc32c094427abc13bed (patch) | |
tree | 78ba027d83af3103b38ab9a6aeee26cbae7e7c4e | |
parent | 690c015758dcbf08dd53b95981a65ccb9687dfa4 (diff) | |
download | ffmpeg-fd8cbfec3d2dbfc82960ddc32c094427abc13bed.tar.gz |
lavc/vp8dsp: remove RISC-V table alignment
These values are bytes and need not be aligned.
-rw-r--r-- | libavcodec/riscv/vp8dsp_rvv.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/riscv/vp8dsp_rvv.S b/libavcodec/riscv/vp8dsp_rvv.S index a8b3e239ba..a0548fbf0a 100644 --- a/libavcodec/riscv/vp8dsp_rvv.S +++ b/libavcodec/riscv/vp8dsp_rvv.S @@ -365,7 +365,7 @@ func ff_put_vp8_bilin\len\()_hv_rvv, zve32x endfunc .endr -const subpel_filters +const subpel_filters, align=0 .byte 0, -6, 123, 12, -1, 0 .byte 2, -11, 108, 36, -8, 1 .byte 0, -9, 93, 50, -6, 0 |