diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-01-13 15:27:00 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-01-25 12:00:16 -0500 |
commit | 9cac1b4b4f1532fb2aeef54799285360656be5eb (patch) | |
tree | b99c8b52894731f33a5bfe09dcd1042f6ab59f9e /libavcodec/qsvenc.h | |
parent | eef9f06508354d1c7d5624c1c18997e7974288f1 (diff) | |
download | ffmpeg-9cac1b4b4f1532fb2aeef54799285360656be5eb.tar.gz |
qsvenc: Add private option to replace coder_type
Missing from be00ec832c519427cd92218abac77dafdc1d5487.
Diffstat (limited to 'libavcodec/qsvenc.h')
-rw-r--r-- | libavcodec/qsvenc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/qsvenc.h b/libavcodec/qsvenc.h index 97165fc0ed..719e4ece04 100644 --- a/libavcodec/qsvenc.h +++ b/libavcodec/qsvenc.h @@ -66,6 +66,7 @@ { "adaptive_i", "Adaptive I-frame placement", OFFSET(qsv.adaptive_i), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \ { "adaptive_b", "Adaptive B-frame placement", OFFSET(qsv.adaptive_b), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \ { "b_strategy", "Strategy to choose between I/P/B-frames", OFFSET(qsv.b_strategy), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \ +{ "cavlc", "Enable CAVLC", OFFSET(qsv.cavlc), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE }, \ typedef struct QSVEncContext { AVCodecContext *avctx; @@ -120,6 +121,7 @@ typedef struct QSVEncContext { int adaptive_i; int adaptive_b; int b_strategy; + int cavlc; int int_ref_type; int int_ref_cycle_size; |