summaryrefslogtreecommitdiff
path: root/libavcodec/libxavs2.c
diff options
context:
space:
mode:
authorhwren <hwrenx@126.com>2018-09-12 15:54:51 +0800
committerMark Thompson <sw@jkqxz.net>2018-09-17 23:20:40 +0100
commitbc1097a2bf4f595c6e391457ec6a44519b5330ae (patch)
tree3ee17c85d8bb1e768c72769787a3085b8321720b /libavcodec/libxavs2.c
parentc0e9824c0f250aa993f1f189dbd75e2a89924325 (diff)
lavc/libxavs2: remove nonexistent parameters
Signed-off-by: hwren <hwrenx@126.com>
Diffstat (limited to 'libavcodec/libxavs2.c')
-rw-r--r--libavcodec/libxavs2.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/libxavs2.c b/libavcodec/libxavs2.c
index e26c90a8c6..2b47d0c5d2 100644
--- a/libavcodec/libxavs2.c
+++ b/libavcodec/libxavs2.c
@@ -78,8 +78,6 @@ static av_cold int xavs2_init(AVCodecContext *avctx)
return AVERROR(ENOMEM);
}
- xavs2_opt_set2("rec", "%d", 0);
-
xavs2_opt_set2("width", "%d", avctx->width);
xavs2_opt_set2("height", "%d", avctx->height);
xavs2_opt_set2("bframes", "%d", avctx->max_b_frames);
@@ -92,7 +90,6 @@ static av_cold int xavs2_init(AVCodecContext *avctx)
xavs2_opt_set2("thread_frames", "%d", avctx->thread_count);
xavs2_opt_set2("thread_rows", "%d", cae->lcu_row_threads);
- xavs2_opt_set2("hierarchical_ref", "%d", cae->hierarchical_reference);
xavs2_opt_set2("OpenGOP", "%d", 1);
@@ -261,7 +258,6 @@ static const AVOption options[] = {
{ "min_qp" , "min qp for rate control" , OFFSET(min_qp) , AV_OPT_TYPE_INT, {.i64 = 20 }, 0, 63, VE },
{ "speed_level" , "Speed level, higher is better but slower", OFFSET(preset_level) , AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 9, VE },
{ "log_level" , "log level: -1: none, 0: error, 1: warning, 2: info, 3: debug", OFFSET(log_level) , AV_OPT_TYPE_INT, {.i64 = 0 }, -1, 3, VE },
- { "hierarchical_ref", "hierarchical reference" , OFFSET(hierarchical_reference) , AV_OPT_TYPE_BOOL, {.i64 = 1 }, 0, 1, VE },
{ "xavs2-params" , "set the xavs2 configuration using a :-separated list of key=value parameters", OFFSET(xavs2_opts), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
{ NULL },
};