FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Enumerations | Functions | Variables
qsvenc_hevc.c File Reference
#include <stdint.h>
#include <sys/types.h>
#include <mfx/mfxvideo.h>
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "bytestream.h"
#include "get_bits.h"
#include "hevc.h"
#include "h2645_parse.h"
#include "internal.h"
#include "qsv.h"
#include "qsv_internal.h"
#include "qsvenc.h"

Go to the source code of this file.

Data Structures

struct  QSVHEVCEncContext
 

Macros

#define OFFSET(x)   offsetof(QSVHEVCEncContext, x)
 
#define VE   AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
 

Enumerations

enum  LoadPlugin {
  LOAD_PLUGIN_NONE, LOAD_PLUGIN_HEVC_SW, LOAD_PLUGIN_NONE, LOAD_PLUGIN_HEVC_SW,
  LOAD_PLUGIN_HEVC_HW
}
 

Functions

static int generate_fake_vps (QSVEncContext *q, AVCodecContext *avctx)
 
static av_cold int qsv_enc_init (AVCodecContext *avctx)
 
static int qsv_enc_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
 
static av_cold int qsv_enc_close (AVCodecContext *avctx)
 

Variables

static const AVOption options []
 
class {
      class_name = "hevc_qsv encoder"
 
      item_name = av_default_item_name
 
      option = options
 
      version = LIBAVUTIL_VERSION_INT
 
}; 
 
static const AVCodecDefault qsv_enc_defaults []
 
AVCodec ff_hevc_qsv_encoder
 

Macro Definition Documentation

#define OFFSET (   x)    offsetof(QSVHEVCEncContext, x)

Definition at line 211 of file qsvenc_hevc.c.

Definition at line 212 of file qsvenc_hevc.c.

Enumeration Type Documentation

enum LoadPlugin
Enumerator
LOAD_PLUGIN_NONE 
LOAD_PLUGIN_HEVC_SW 
LOAD_PLUGIN_NONE 
LOAD_PLUGIN_HEVC_SW 
LOAD_PLUGIN_HEVC_HW 

Definition at line 40 of file qsvenc_hevc.c.

Function Documentation

static int generate_fake_vps ( QSVEncContext q,
AVCodecContext avctx 
)
static

Definition at line 52 of file qsvenc_hevc.c.

Referenced by qsv_enc_init().

static av_cold int qsv_enc_init ( AVCodecContext avctx)
static

Definition at line 157 of file qsvenc_hevc.c.

static int qsv_enc_frame ( AVCodecContext avctx,
AVPacket pkt,
const AVFrame frame,
int *  got_packet 
)
static

Definition at line 196 of file qsvenc_hevc.c.

static av_cold int qsv_enc_close ( AVCodecContext avctx)
static

Definition at line 204 of file qsvenc_hevc.c.

Variable Documentation

const AVOption options[]
static
Initial value:
= {
{ "load_plugin", "A user plugin to load in an internal session", OFFSET(load_plugin), AV_OPT_TYPE_INT, { .i64 = LOAD_PLUGIN_HEVC_SW }, LOAD_PLUGIN_NONE, LOAD_PLUGIN_HEVC_HW, VE, "load_plugin" },
{ "none", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_NONE }, 0, 0, VE, "load_plugin" },
{ "hevc_sw", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_HEVC_SW }, 0, 0, VE, "load_plugin" },
{ "hevc_hw", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_HEVC_HW }, 0, 0, VE, "load_plugin" },
{ "load_plugins", "A :-separate list of hexadecimal plugin UIDs to load in an internal session",
OFFSET(qsv.load_plugins), AV_OPT_TYPE_STRING, { .str = "" }, 0, 0, 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" },
{ "main", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_HEVC_MAIN }, INT_MIN, INT_MAX, VE, "profile" },
{ "main10", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_HEVC_MAIN10 }, INT_MIN, INT_MAX, VE, "profile" },
{ "mainsp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_HEVC_MAINSP }, INT_MIN, INT_MAX, VE, "profile" },
{ NULL },
}
#define NULL
Definition: coverity.c:32
#define OFFSET(x)
Definition: qsvenc_hevc.c:211
#define QSV_COMMON_OPTS
Definition: qsvenc.h:50
#define VE
Definition: qsvenc_hevc.c:212

Definition at line 213 of file qsvenc_hevc.c.

class_name = "hevc_qsv encoder"

Definition at line 234 of file qsvenc_hevc.c.

item_name = av_default_item_name

Definition at line 235 of file qsvenc_hevc.c.

option = options

Definition at line 236 of file qsvenc_hevc.c.

Definition at line 237 of file qsvenc_hevc.c.

const { ... }
const AVCodecDefault qsv_enc_defaults[]
static
Initial value:
= {
{ "b", "1M" },
{ "refs", "0" },
{ "g", "248" },
{ "bf", "8" },
{ "flags", "+cgop" },
{ "b_strategy", "-1" },
{ NULL },
}
#define NULL
Definition: coverity.c:32

Definition at line 240 of file qsvenc_hevc.c.

AVCodec ff_hevc_qsv_encoder
Initial value:
= {
.name = "hevc_qsv",
.long_name = NULL_IF_CONFIG_SMALL("HEVC (Intel Quick Sync Video acceleration)"),
.priv_data_size = sizeof(QSVHEVCEncContext),
.encode2 = qsv_enc_frame,
.close = qsv_enc_close,
.capabilities = AV_CODEC_CAP_DELAY,
.priv_class = &class,
.defaults = qsv_enc_defaults,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
}
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: internal.h:48
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static int qsv_enc_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: qsvenc_hevc.c:196
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:981
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
Definition: pixfmt.h:90
static const AVCodecDefault qsv_enc_defaults[]
Definition: qsvenc_hevc.c:240
static av_cold int qsv_enc_close(AVCodecContext *avctx)
Definition: qsvenc_hevc.c:204
GLint GLenum type
Definition: opengl_enc.c:105
HW acceleration through QSV, data[3] contains a pointer to the mfxFrameSurface1 structure.
Definition: pixfmt.h:235
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:262
static av_cold int qsv_enc_init(AVCodecContext *avctx)
Definition: qsvenc_hevc.c:157
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60

Definition at line 254 of file qsvenc_hevc.c.