diff options
author | Nuo Mi <nuomi2021@gmail.com> | 2024-05-19 21:27:41 +0800 |
---|---|---|
committer | Nuo Mi <nuomi2021@gmail.com> | 2024-05-21 20:20:25 +0800 |
commit | e70225e0a887a9084d387f3f6f5360a2b5f5b001 (patch) | |
tree | ca2383860c60f5dff4b717af18772e3731298f9b /libavcodec/vvc/dec.h | |
parent | aa8d5c6e7ed3c2340035c93a2fae93d1aa8dd9c6 (diff) | |
download | ffmpeg-e70225e0a887a9084d387f3f6f5360a2b5f5b001.tar.gz |
avcodec/vvcdec: emulated_edge, use reference frame's sps and pps
a preparation for Reference Picture Resampling
Diffstat (limited to 'libavcodec/vvc/dec.h')
-rw-r--r-- | libavcodec/vvc/dec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vvc/dec.h b/libavcodec/vvc/dec.h index 205427f681..6f14cc1860 100644 --- a/libavcodec/vvc/dec.h +++ b/libavcodec/vvc/dec.h @@ -60,6 +60,8 @@ typedef struct RefPicListTab { typedef struct VVCFrame { struct AVFrame *frame; + const VVCSPS *sps; ///< RefStruct reference + const VVCPPS *pps; ///< RefStruct reference struct MvField *tab_dmvr_mvf; ///< RefStruct reference RefPicListTab **rpl_tab; ///< RefStruct reference RefPicListTab *rpl; ///< RefStruct reference |