summaryrefslogtreecommitdiff
path: root/libavcodec/libxavs2.c
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2019-12-25 01:13:48 +0100
committerMarton Balint <cus@passwd.hu>2020-01-01 21:22:11 +0100
commita613d042e71b44be7d0626c05e2c6360f7e75ebe (patch)
tree381eb80457fd46c44d7da10ce999ba3cb3ef1443 /libavcodec/libxavs2.c
parent91f64ea4c59244745ef512f481c96f6bbc654a65 (diff)
avcodec/libxavs2: use AV_OPT_TYPE_DICT for xavs2-params
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavcodec/libxavs2.c')
-rw-r--r--libavcodec/libxavs2.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/libavcodec/libxavs2.c b/libavcodec/libxavs2.c
index 2f8460ab8e..76b57e731e 100644
--- a/libavcodec/libxavs2.c
+++ b/libavcodec/libxavs2.c
@@ -48,7 +48,7 @@ typedef struct XAVS2EContext {
int log_level;
void *encoder;
- char *xavs2_opts;
+ AVDictionary *xavs2_opts;
xavs2_outpacket_t packet;
xavs2_param_t *param;
@@ -92,16 +92,10 @@ static av_cold int xavs2_init(AVCodecContext *avctx)
xavs2_opt_set2("OpenGOP", "%d", !(avctx->flags & AV_CODEC_FLAG_CLOSED_GOP));
- if (cae->xavs2_opts) {
- AVDictionary *dict = NULL;
+ {
AVDictionaryEntry *en = NULL;
-
- if (!av_dict_parse_string(&dict, cae->xavs2_opts, "=", ":", 0)) {
- while ((en = av_dict_get(dict, "", en, AV_DICT_IGNORE_SUFFIX))) {
- xavs2_opt_set2(en->key, "%s", en->value);
- }
- av_dict_free(&dict);
- }
+ while ((en = av_dict_get(cae->xavs2_opts, "", en, AV_DICT_IGNORE_SUFFIX)))
+ xavs2_opt_set2(en->key, "%s", en->value);
}
/* Rate control */
@@ -267,7 +261,7 @@ 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 },
- { "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 },
+ { "xavs2-params" , "set the xavs2 configuration using a :-separated list of key=value parameters", OFFSET(xavs2_opts), AV_OPT_TYPE_DICT, { 0 }, 0, 0, VE },
{ NULL },
};