diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-27 17:51:12 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-12-01 11:00:40 +0100 |
commit | 0d84725cb92f2e0b3793dda1ee3a759a64812ec2 (patch) | |
tree | a33cded93c7f6b8db4b4b646be50032d4c69e649 | |
parent | 4d9c0b3efa4199cf05ad2404d23ca4a8c2e6668a (diff) | |
download | ffmpeg-0d84725cb92f2e0b3793dda1ee3a759a64812ec2.tar.gz |
avcodec/sei: Add tag to SEI enumeration
This makes it a usable type.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/sei.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sei.h b/libavcodec/sei.h index 5513590b51..f13c37c308 100644 --- a/libavcodec/sei.h +++ b/libavcodec/sei.h @@ -26,7 +26,7 @@ // The content of the payload data depends on the standard, though // many generic parts have the same interpretation everywhere (such as // mastering-display-colour-volume and user-data-unregistered). -enum { +enum SEIType { SEI_TYPE_BUFFERING_PERIOD = 0, SEI_TYPE_PIC_TIMING = 1, SEI_TYPE_PAN_SCAN_RECT = 2, |