aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/vvc.h
diff options
context:
space:
mode:
authorNuo Mi <nuomi2021@gmail.com>2024-06-09 12:28:16 +0800
committerNuo Mi <nuomi2021@gmail.com>2024-06-25 19:32:17 +0800
commit8b3d1f1fb3791bfb240e54a07a66c7f9dc172304 (patch)
treeb19e6a6f15786eb8f3ea540f21a799d336f1c8cb /libavcodec/vvc.h
parentfc731d8b39dd6d17431260c66cc15f49a25181f1 (diff)
downloadffmpeg-8b3d1f1fb3791bfb240e54a07a66c7f9dc172304.tar.gz
cbs_h266: add VVC_MAX_VBS for max num of virtual boundaries
Diffstat (limited to 'libavcodec/vvc.h')
-rw-r--r--libavcodec/vvc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vvc.h b/libavcodec/vvc.h
index c4cec1eb8f..92639779c1 100644
--- a/libavcodec/vvc.h
+++ b/libavcodec/vvc.h
@@ -151,6 +151,9 @@ enum {
// get near that, though, so set a lower limit here with the maximum
// possible value for 8K video (at most 135 32x32 Ctb rows).
VVC_MAX_ENTRY_POINTS = VVC_MAX_TILE_COLUMNS * 135,
+
+ // {sps, ph}_num_{ver, hor}_virtual_boundaries should in [0, 3]
+ VVC_MAX_VBS = 3,
};
#endif /* AVCODEC_VVC_H */