Commit a805e2e6 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/hevc: add "apply_defdispwin" alias for compatibilty with...

avcodec/hevc: add "apply_defdispwin" alias for compatibilty with 064698d3Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 35594c48
......@@ -2901,6 +2901,8 @@ static void hevc_decode_flush(AVCodecContext *avctx)
#define OFFSET(x) offsetof(HEVCContext, x)
#define PAR (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
static const AVOption options[] = {
{ "apply_defdispwin", "Apply default display window from VUI", OFFSET(apply_defdispwin),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, PAR },
{ "strict-displaywin", "stricly apply default display window size", OFFSET(apply_defdispwin),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, PAR },
{ NULL },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment