diff options
author | Sven Dueking <sven@nablet.com> | 2015-08-19 09:17:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-19 13:49:37 +0200 |
commit | 6eecb91fbc275fec5225626c06d061e883ba37e0 (patch) | |
tree | 374df000b3ea39422df44416924b1233105ce1c0 | |
parent | 3dabebc272b0ab5455610975a6d75de08b97dc62 (diff) | |
download | ffmpeg-6eecb91fbc275fec5225626c06d061e883ba37e0.tar.gz |
avcodec/qsvenc: Added PicTiming SEI
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/qsvenc.c | 3 | ||||
-rw-r--r-- | libavcodec/qsvenc.h | 1 | ||||
-rw-r--r-- | libavcodec/qsvenc_h264.c | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/qsvenc.c b/libavcodec/qsvenc.c index e5d3fa605d..1532258d49 100644 --- a/libavcodec/qsvenc.c +++ b/libavcodec/qsvenc.c @@ -146,6 +146,9 @@ static int init_video_param(AVCodecContext *avctx, QSVEncContext *q) q->extco.CAVLC = avctx->coder_type == FF_CODER_TYPE_VLC ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_UNKNOWN; + q->extco.PicTimingSEI = q->pic_timing_sei ? + MFX_CODINGOPTION_ON : MFX_CODINGOPTION_UNKNOWN; + q->extparam[0] = (mfxExtBuffer *)&q->extco; q->param.ExtParam = q->extparam; diff --git a/libavcodec/qsvenc.h b/libavcodec/qsvenc.h index 19be2aa448..231648821f 100644 --- a/libavcodec/qsvenc.h +++ b/libavcodec/qsvenc.h @@ -61,6 +61,7 @@ typedef struct QSVEncContext { int preset; int avbr_accuracy; int avbr_convergence; + int pic_timing_sei; char *load_plugins; } QSVEncContext; diff --git a/libavcodec/qsvenc_h264.c b/libavcodec/qsvenc_h264.c index 95396fce1d..b15f6b2188 100644 --- a/libavcodec/qsvenc_h264.c +++ b/libavcodec/qsvenc_h264.c @@ -69,6 +69,7 @@ static const AVOption options[] = { { "idr_interval", "Distance (in I-frames) between IDR frames", OFFSET(qsv.idr_interval), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE }, { "avbr_accuracy", "Accuracy of the AVBR ratecontrol", OFFSET(qsv.avbr_accuracy), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE }, { "avbr_convergence", "Convergence of the AVBR ratecontrol", OFFSET(qsv.avbr_convergence), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE }, + { "pic_timing_sei", "Insert picture timing SEI with pic_struct_syntax element", OFFSET(qsv.pic_timing_sei), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE }, { "profile", NULL, OFFSET(qsv.profile), AV_OPT_TYPE_INT, { .i64 = MFX_PROFILE_UNKNOWN }, 0, INT_MAX, VE, "profile" }, { "unknown" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_UNKNOWN }, INT_MIN, INT_MAX, VE, "profile" }, |