diff options
author | Mark Thompson <sw@jkqxz.net> | 2018-09-18 23:30:50 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2018-09-23 14:42:34 +0100 |
commit | 91534786faf8a5b54a3f532a3338e5fac40f3e2d (patch) | |
tree | 72b143105a2f34f40ca9c062fbe2e56be95a7095 /libavcodec/vaapi_encode_h265.c | |
parent | 4cc367bf9dc9d25cd7f96b4ceb5f6e648466cc43 (diff) | |
download | ffmpeg-91534786faf8a5b54a3f532a3338e5fac40f3e2d.tar.gz |
vaapi_encode_h26[45]: Make the AUD option a boolean
Diffstat (limited to 'libavcodec/vaapi_encode_h265.c')
-rw-r--r-- | libavcodec/vaapi_encode_h265.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vaapi_encode_h265.c b/libavcodec/vaapi_encode_h265.c index c40782a78e..6940a59240 100644 --- a/libavcodec/vaapi_encode_h265.c +++ b/libavcodec/vaapi_encode_h265.c @@ -1093,7 +1093,7 @@ static const AVOption vaapi_encode_h265_options[] = { OFFSET(qp), AV_OPT_TYPE_INT, { .i64 = 25 }, 0, 52, FLAGS }, { "aud", "Include AUD", - OFFSET(aud), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS }, + OFFSET(aud), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, FLAGS }, { "profile", "Set profile (general_profile_idc)", OFFSET(profile), AV_OPT_TYPE_INT, |