Browse Source

avcodec/qsvenc: Added PicTiming SEI

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n2.8
Sven Dueking Michael Niedermayer 10 years ago
parent
commit
6eecb91fbc
3 changed files with 5 additions and 0 deletions
  1. +3
    -0
      libavcodec/qsvenc.c
  2. +1
    -0
      libavcodec/qsvenc.h
  3. +1
    -0
      libavcodec/qsvenc_h264.c

+ 3
- 0
libavcodec/qsvenc.c View File

@@ -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;


+ 1
- 0
libavcodec/qsvenc.h View File

@@ -61,6 +61,7 @@ typedef struct QSVEncContext {
int preset;
int avbr_accuracy;
int avbr_convergence;
int pic_timing_sei;

char *load_plugins;
} QSVEncContext;


+ 1
- 0
libavcodec/qsvenc_h264.c View File

@@ -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" },


Loading…
Cancel
Save