OpenVisualCloud/SVT-HEVC

configure encoder parameters cpp

Timorleiderman opened this issue · 3 comments

I am using cpp with ffmpeg and svt-hevc
I want to configure encMode and QP parameters

what am I doing wrong?

this is a sample of my code:

int ret;
const AVCodec *codec;
AVCodecContext *c= NULL;
codec = avcodec_find_encoder_by_name("libsvt_hevc");

c = avcodec_alloc_context3(codec);

AVCodecParameters *params = NULL;
params = avcodec_parameters_alloc();

c->codec_type = AVMEDIA_TYPE_VIDEO;
ret = avcodec_parameters_from_context(params, c);

c->width = 512;
c->height = 768;
c->gop_size = 30;
c->pix_fmt = AV_PIX_FMT_YUV420P;
c->time_base= (AVRational){1,30};

av_opt_set(c,"encMode", "11", 0); // <- this does not work

if (avcodec_open2(c, codec, &opts) < 0)
    std::cout << "could not open codec" << std::endl;

Thank you
this worked for me :)
av_opt_set(c->priv_data, "preset", "9",0);
av_opt_set(c->priv_data, "qp", "20",0);

No problem:)