diff options
author | Nuo Mi <nuomi2021@gmail.com> | 2023-12-05 22:45:14 +0800 |
---|---|---|
committer | Nuo Mi <nuomi2021@gmail.com> | 2024-01-03 23:15:12 +0800 |
commit | c05ba94ce87a785924e81982be4476b978def3cc (patch) | |
tree | d33e4283cfd557af2de536048f84331d84915f99 /libavcodec/vvc/vvc_ctu.h | |
parent | 2592cc1f96ce5753a220f35fd3952832938f3e19 (diff) | |
download | ffmpeg-c05ba94ce87a785924e81982be4476b978def3cc.tar.gz |
vvcdec: add intra prediction
Co-authored-by: Xu Mu <toxumu@outlook.com>
Co-authored-by: Frank Plowman <post@frankplowman.com>
Co-authored-by: Shaun Loo <shaunloo10@gmail.com>
Co-authored-by: Wu Jianhua <toqsxw@outlook.com>
Diffstat (limited to 'libavcodec/vvc/vvc_ctu.h')
-rw-r--r-- | libavcodec/vvc/vvc_ctu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vvc/vvc_ctu.h b/libavcodec/vvc/vvc_ctu.h index d35b680aff..47c9f181bb 100644 --- a/libavcodec/vvc/vvc_ctu.h +++ b/libavcodec/vvc/vvc_ctu.h @@ -461,6 +461,8 @@ typedef struct ALFParams { //utils void ff_vvc_set_neighbour_available(VVCLocalContext *lc, int x0, int y0, int w, int h); +void ff_vvc_decode_neighbour(VVCLocalContext *lc, int x_ctb, int y_ctb, int rx, int ry, int rs); +void ff_vvc_ctu_free_cus(CTU *ctu); void ff_vvc_ep_init_stat_coeff(EntryPoint *ep, int bit_depth, int persistent_rice_adaptation_enabled_flag); #endif // AVCODEC_VVC_VVC_CTU_H |