diff options
author | James Almer <jamrial@gmail.com> | 2021-01-22 16:30:51 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-01-26 21:27:29 -0300 |
commit | 683cd25c5a397447eb53754af948e7bf2cb3361e (patch) | |
tree | 34d3191d084db31fe63b73e96b17991e5634cf65 | |
parent | 2ee2e4cd416c0847826610e70d6c79e48f78344c (diff) | |
download | ffmpeg-683cd25c5a397447eb53754af948e7bf2cb3361e.tar.gz |
avcodec/sei: add Parameter Sets Inclusion Indication enum value
Defined in H.274, it shares the same value as Active Parameter Sets from the
H.265 spec.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/sei.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/sei.h b/libavcodec/sei.h index f07c72ae7b..5513590b51 100644 --- a/libavcodec/sei.h +++ b/libavcodec/sei.h @@ -85,6 +85,7 @@ enum { SEI_TYPE_GREEN_METADATA = 56, SEI_TYPE_STRUCTURE_OF_PICTURES_INFO = 128, SEI_TYPE_ACTIVE_PARAMETER_SETS = 129, + SEI_TYPE_PARAMETER_SETS_INCLUSION_INDICATION = SEI_TYPE_ACTIVE_PARAMETER_SETS, SEI_TYPE_DECODING_UNIT_INFO = 130, SEI_TYPE_TEMPORAL_SUB_LAYER_ZERO_IDX = 131, SEI_TYPE_DECODED_PICTURE_HASH = 132, |