diff options
author | James Almer <jamrial@gmail.com> | 2020-12-07 14:28:50 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-12-07 14:28:50 -0300 |
commit | c369ceb24474449897b3c198fa2c03793173620e (patch) | |
tree | 213a60b617c51de605c3049050bcd35c1cfdfc9b | |
parent | 1aa72fe79454c8f0a9adcd9ac7e6fbd20bbfe1a4 (diff) | |
download | ffmpeg-c369ceb24474449897b3c198fa2c03793173620e.tar.gz |
avcodec/dynamic_hdr10_plus: remove unused const variables
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/dynamic_hdr10_plus.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/dynamic_hdr10_plus.c b/libavcodec/dynamic_hdr10_plus.c index 4b2ecdb72e..a602e606ed 100644 --- a/libavcodec/dynamic_hdr10_plus.c +++ b/libavcodec/dynamic_hdr10_plus.c @@ -19,10 +19,6 @@ #include "dynamic_hdr10_plus.h" #include "get_bits.h" -static const uint8_t usa_country_code = 0xB5; -static const uint16_t smpte_provider_code = 0x003C; -static const uint16_t smpte2094_40_provider_oriented_code = 0x0001; -static const uint16_t smpte2094_40_application_identifier = 0x04; static const int64_t luminance_den = 1; static const int32_t peak_luminance_den = 15; static const int64_t rgb_den = 100000; |