FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
qsvenc_mpeg2.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 "internal.h"
#include "qsv.h"
#include "qsv_internal.h"
#include "qsvenc.h"

Go to the source code of this file.

Data Structures

struct  QSVMpeg2EncContext
 

Macros

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

Functions

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 = "mpeg2_qsv encoder"
 
      item_name = av_default_item_name
 
      option = options
 
      version = LIBAVUTIL_VERSION_INT
 
}; 
 
static const AVCodecDefault qsv_enc_defaults []
 
AVCodec ff_mpeg2_qsv_encoder
 

Macro Definition Documentation

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

Definition at line 63 of file qsvenc_mpeg2.c.

Definition at line 64 of file qsvenc_mpeg2.c.

Function Documentation

static av_cold int qsv_enc_init ( AVCodecContext avctx)
static

Definition at line 41 of file qsvenc_mpeg2.c.

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

Definition at line 48 of file qsvenc_mpeg2.c.

static av_cold int qsv_enc_close ( AVCodecContext avctx)
static

Definition at line 56 of file qsvenc_mpeg2.c.

Variable Documentation

const AVOption options[]
static
Initial value:
= {
{ "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" },
{ "simple", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_MPEG2_SIMPLE }, INT_MIN, INT_MAX, VE, "profile" },
{ "main", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_MPEG2_MAIN }, INT_MIN, INT_MAX, VE, "profile" },
{ "high", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_MPEG2_HIGH }, INT_MIN, INT_MAX, VE, "profile" },
{ NULL },
}
#define NULL
Definition: coverity.c:32
#define VE
Definition: qsvenc_mpeg2.c:64
#define QSV_COMMON_OPTS
Definition: qsvenc.h:50
#define OFFSET(x)
Definition: qsvenc_mpeg2.c:63

Definition at line 65 of file qsvenc_mpeg2.c.

class_name = "mpeg2_qsv encoder"

Definition at line 78 of file qsvenc_mpeg2.c.

item_name = av_default_item_name

Definition at line 79 of file qsvenc_mpeg2.c.

option = options

Definition at line 80 of file qsvenc_mpeg2.c.

Definition at line 81 of file qsvenc_mpeg2.c.

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

Definition at line 84 of file qsvenc_mpeg2.c.

AVCodec ff_mpeg2_qsv_encoder
Initial value:
= {
.name = "mpeg2_qsv",
.long_name = NULL_IF_CONFIG_SMALL("MPEG-2 video (Intel Quick Sync Video acceleration)"),
.priv_data_size = sizeof(QSVMpeg2EncContext),
.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 av_cold int qsv_enc_close(AVCodecContext *avctx)
Definition: qsvenc_mpeg2.c:56
#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:881
static int qsv_enc_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: qsvenc_mpeg2.c:48
#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:91
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:106
static av_cold int qsv_enc_init(AVCodecContext *avctx)
Definition: qsvenc_mpeg2.c:41
GLint GLenum type
Definition: opengl_enc.c:105
HW acceleration through QSV, data[3] contains a pointer to the mfxFrameSurface1 structure.
Definition: pixfmt.h:236
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:262
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
static const AVCodecDefault qsv_enc_defaults[]
Definition: qsvenc_mpeg2.c:84

Definition at line 98 of file qsvenc_mpeg2.c.