aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-19 16:47:37 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-22 17:35:56 +0200
commit993e3a6b54552c59bda076d1568ebce69b566545 (patch)
tree05aabc9f7a460ba361f6c5162c428ecde6c3ad4f
parent543ef831a8363712dca9c90222ecfc002b42a0c3 (diff)
downloadffmpeg-993e3a6b54552c59bda076d1568ebce69b566545.tar.gz
avocdec/cbs_internal: Rename CBS_MAX_UNIT_TYPES->CBS_MAX_LIST_UNIT_TYPES
This makes it clearer that this limit does not apply to CBS_UNIT_TYPE_RANGE units. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/cbs_internal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/cbs_internal.h b/libavcodec/cbs_internal.h
index 045df91744..e585c77934 100644
--- a/libavcodec/cbs_internal.h
+++ b/libavcodec/cbs_internal.h
@@ -41,9 +41,9 @@ enum CBSContentType {
};
enum {
- // Maximum number of unit types described by the same unit type
- // descriptor.
- CBS_MAX_UNIT_TYPES = 3,
+ // Maximum number of unit types described by the same non-range
+ // unit type descriptor.
+ CBS_MAX_LIST_UNIT_TYPES = 3,
// Maximum number of reference buffer offsets in any one unit.
CBS_MAX_REF_OFFSETS = 2,
// Special value used in a unit type descriptor to indicate that it
@@ -60,7 +60,7 @@ typedef const struct CodedBitstreamUnitTypeDescriptor {
union {
// Array of unit types that this entry describes.
- CodedBitstreamUnitType list[CBS_MAX_UNIT_TYPES];
+ CodedBitstreamUnitType list[CBS_MAX_LIST_UNIT_TYPES];
// Start and end of unit type range, used if nb_unit_types is
// CBS_UNIT_TYPE_RANGE.
struct {