diff options
author | Nuo Mi <nuomi2021@gmail.com> | 2021-01-12 00:33:13 +0800 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-01-11 17:03:15 -0300 |
commit | 71de4ebedefda1cd9aef1ba60b3e04fc5f1992ce (patch) | |
tree | 41a70f0d9b51e446ab6a0e271210bbf571320ad0 | |
parent | ebdd33086adc9899959840b616480c42c80653ce (diff) | |
download | ffmpeg-71de4ebedefda1cd9aef1ba60b3e04fc5f1992ce.tar.gz |
avcodec/cbs_h265: fix undef SEI_TYPE_X
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/cbs_h265_syntax_template.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/cbs_h265_syntax_template.c b/libavcodec/cbs_h265_syntax_template.c index 48fae82d04..c0e94683a2 100644 --- a/libavcodec/cbs_h265_syntax_template.c +++ b/libavcodec/cbs_h265_syntax_template.c @@ -2197,7 +2197,9 @@ static int FUNC(sei_payload)(CodedBitstreamContext *ctx, RWContext *rw, 1, 0, alternative_transfer_characteristics); SEI_TYPE_N(ALPHA_CHANNEL_INFO, 1, 0, alpha_channel_info); -#undef SEI_TYPE +#undef SEI_TYPE_N +#undef SEI_TYPE_S +#undef SEI_TYPE_E default: { #ifdef READ |