23 #ifndef AVCODEC_QSVENC_H 
   24 #define AVCODEC_QSVENC_H 
   27 #include <sys/types.h> 
   29 #include <mfx/mfxvideo.h> 
   37 #define QSV_HAVE_CO2 QSV_VERSION_ATLEAST(1, 6) 
   38 #define QSV_HAVE_CO3 QSV_VERSION_ATLEAST(1, 11) 
   40 #define QSV_HAVE_TRELLIS QSV_VERSION_ATLEAST(1, 8) 
   41 #define QSV_HAVE_MAX_SLICE_SIZE QSV_VERSION_ATLEAST(1, 9) 
   42 #define QSV_HAVE_BREF_TYPE      QSV_VERSION_ATLEAST(1, 8) 
   44 #define QSV_HAVE_LA     QSV_VERSION_ATLEAST(1, 7) 
   45 #define QSV_HAVE_LA_HRD QSV_VERSION_ATLEAST(1, 11) 
   46 #define QSV_HAVE_ICQ    QSV_VERSION_ATLEAST(1, 8) 
   47 #define QSV_HAVE_VCM    QSV_VERSION_ATLEAST(1, 8) 
   48 #define QSV_HAVE_QVBR   QSV_VERSION_ATLEAST(1, 11) 
   50 #define QSV_COMMON_OPTS \ 
   51 { "async_depth", "Maximum processing parallelism", OFFSET(qsv.async_depth), AV_OPT_TYPE_INT, { .i64 = ASYNC_DEPTH_DEFAULT }, 0, INT_MAX, VE },                          \ 
   52 { "avbr_accuracy",    "Accuracy of the AVBR ratecontrol",    OFFSET(qsv.avbr_accuracy),    AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },                             \ 
   53 { "avbr_convergence", "Convergence of the AVBR ratecontrol", OFFSET(qsv.avbr_convergence), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },                             \ 
   54 { "preset", NULL, OFFSET(qsv.preset), AV_OPT_TYPE_INT, { .i64 = MFX_TARGETUSAGE_BALANCED }, MFX_TARGETUSAGE_BEST_QUALITY, MFX_TARGETUSAGE_BEST_SPEED,   VE, "preset" }, \ 
   55 { "veryfast",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_SPEED  },   INT_MIN, INT_MAX, VE, "preset" },                                                \ 
   56 { "faster",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_6  },            INT_MIN, INT_MAX, VE, "preset" },                                                \ 
   57 { "fast",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_5  },            INT_MIN, INT_MAX, VE, "preset" },                                                \ 
   58 { "medium",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BALANCED  },     INT_MIN, INT_MAX, VE, "preset" },                                                \ 
   59 { "slow",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_3  },            INT_MIN, INT_MAX, VE, "preset" },                                                \ 
   60 { "slower",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_2  },            INT_MIN, INT_MAX, VE, "preset" },                                                \ 
   61 { "veryslow",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_QUALITY  }, INT_MIN, INT_MAX, VE, "preset" },                                                \ 
   62 { "vcm",      "Use the video conferencing mode ratecontrol",  OFFSET(qsv.vcm),      AV_OPT_TYPE_INT, { .i64 = 0  },  0, 1,         VE },                                \ 
   63 { "rdo",            "Enable rate distortion optimization",    OFFSET(qsv.rdo),            AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \ 
   64 { "max_frame_size", "Maximum encoded frame size in bytes",    OFFSET(qsv.max_frame_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT16_MAX, VE },                         \ 
   65 { "max_slice_size", "Maximum encoded slice size in bytes",    OFFSET(qsv.max_slice_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT16_MAX, VE },                         \ 
   66 { "bitrate_limit",  "Toggle bitrate limitations",             OFFSET(qsv.bitrate_limit),  AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \ 
   67 { "mbbrc",          "MB level bitrate control",               OFFSET(qsv.mbbrc),          AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \ 
   68 { "extbrc",         "Extended bitrate control",               OFFSET(qsv.extbrc),         AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \ 
   69 { "adaptive_i",     "Adaptive I-frame placement",             OFFSET(qsv.adaptive_i),     AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \ 
   70 { "adaptive_b",     "Adaptive B-frame placement",             OFFSET(qsv.adaptive_b),     AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \ 
   71 { "b_strategy",     "Strategy to choose between I/P/B-frames", OFFSET(qsv.b_strategy),    AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \ 
   72 { "cavlc",          "Enable CAVLC",                           OFFSET(qsv.cavlc),          AV_OPT_TYPE_INT, { .i64 = 0 },   0,          1, VE },                         \ 
   89     mfxFrameAllocRequest 
req;
 
   93     mfxExtCodingOption2 extco2;
 
AVBufferRef * opaque_alloc_buf
 
This structure describes decoded (raw) audio or video data. 
 
mfxExtOpaqueSurfaceAlloc opaque_alloc
 
Convenience header that includes libavutil's core. 
 
int SetEncodeCtrlCB(AVCodecContext *avctx, const AVFrame *frame, mfxEncodeCtrl *enc_ctrl)
 
AVFifoBuffer * async_fifo
 
mfxExtBuffer * extparam_internal[2+QSV_HAVE_CO2]
 
mfxFrameSurface1 ** opaque_surfaces
 
int ff_qsv_encode(AVCodecContext *avctx, QSVEncContext *q, AVPacket *pkt, const AVFrame *frame, int *got_packet)
 
int max_dec_frame_buffering
 
int ff_qsv_enc_close(AVCodecContext *avctx, QSVEncContext *q)
 
int ff_qsv_enc_init(AVCodecContext *avctx, QSVEncContext *q)
 
Libavcodec external API header. 
 
main external API structure. 
 
a very simple circular buffer FIFO implementation 
 
A reference to a data buffer. 
 
int look_ahead_downsampling
 
This structure stores compressed data. 
 
SetEncodeCtrlCB * set_encode_ctrl_cb