diff options
author | Arnie Chang <arnie.chang@sifive.com> | 2023-05-25 20:33:27 +0800 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-05-30 17:15:05 +0200 |
commit | c5508f60c255f7c3c17ac84d0d9c0033094d8a96 (patch) | |
tree | 0f8e1ecca26467145df95e58cf7c83e7525f31df /libavcodec/h264chroma.h | |
parent | b01cfdb4ab1900f4908c2659f8c3f107fcd31605 (diff) | |
download | ffmpeg-c5508f60c255f7c3c17ac84d0d9c0033094d8a96.tar.gz |
lavc/h264chroma: RISC-V V add motion compensation for 8x8 chroma blocks
Optimize the put and avg filtering for 8x8 chroma blocks
Signed-off-by: Arnie Chang <arnie.chang@sifive.com>
Diffstat (limited to 'libavcodec/h264chroma.h')
-rw-r--r-- | libavcodec/h264chroma.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264chroma.h b/libavcodec/h264chroma.h index b8f9c8f4fc..9c81c18a76 100644 --- a/libavcodec/h264chroma.h +++ b/libavcodec/h264chroma.h @@ -37,5 +37,6 @@ void ff_h264chroma_init_ppc(H264ChromaContext *c, int bit_depth); void ff_h264chroma_init_x86(H264ChromaContext *c, int bit_depth); void ff_h264chroma_init_mips(H264ChromaContext *c, int bit_depth); void ff_h264chroma_init_loongarch(H264ChromaContext *c, int bit_depth); +void ff_h264chroma_init_riscv(H264ChromaContext *c, int bit_depth); #endif /* AVCODEC_H264CHROMA_H */ |