FFmpeg  4.0
Macros | Functions | Variables
amfenc_h264.c File Reference
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "amfenc.h"
#include "internal.h"

Go to the source code of this file.

Macros

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

Functions

static av_cold int amf_encode_init_h264 (AVCodecContext *avctx)
 

Variables

static const AVOption options []
 
static const AVCodecDefault defaults []
 
static const AVClass h264_amf_class
 
AVCodec ff_h264_amf_encoder
 

Macro Definition Documentation

◆ OFFSET

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

Definition at line 25 of file amfenc_h264.c.

◆ VE

Definition at line 26 of file amfenc_h264.c.

Function Documentation

◆ amf_encode_init_h264()

static av_cold int amf_encode_init_h264 ( AVCodecContext avctx)
static

Color Range (Partial/TV/MPEG or Full/PC/JPEG)

VBV Buffer

Maximum Access Unit Size

Definition at line 127 of file amfenc_h264.c.

Variable Documentation

◆ options

const AVOption options[]
static

Definition at line 28 of file amfenc_h264.c.

◆ defaults

const AVCodecDefault defaults[]
static
Initial value:
= {
{ "refs", "-1" },
{ "aspect", "0" },
{ "qmin", "-1" },
{ "qmax", "-1" },
{ "b", "2M" },
{ "g", "250" },
{ "slices", "1" },
{ NULL },
}
#define NULL
Definition: coverity.c:32

Definition at line 361 of file amfenc_h264.c.

Referenced by g726_reset().

◆ h264_amf_class

const AVClass h264_amf_class
static
Initial value:
= {
.class_name = "h264_amf",
.item_name = av_default_item_name,
.option = options,
}
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
static const AVOption options[]
Definition: amfenc_h264.c:28

Definition at line 372 of file amfenc_h264.c.

◆ ff_h264_amf_encoder

AVCodec ff_h264_amf_encoder
Initial value:
= {
.name = "h264_amf",
.long_name = NULL_IF_CONFIG_SMALL("AMD AMF H.264 Encoder"),
.send_frame = ff_amf_send_frame,
.receive_packet = ff_amf_receive_packet,
.priv_data_size = sizeof(AmfContext),
.priv_class = &h264_amf_class,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
.wrapper_name = "amf",
}
#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
#define AV_CODEC_CAP_HARDWARE
Codec is backed by a hardware implementation.
Definition: avcodec.h:1056
#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:984
int ff_amf_send_frame(AVCodecContext *avctx, const AVFrame *frame)
Ecoding one frame - common function for all AMF encoders.
Definition: amfenc.c:578
int av_cold ff_amf_encode_close(AVCodecContext *avctx)
Common encoder termination function.
Definition: amfenc.c:356
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
static const AVCodecDefault defaults[]
Definition: amfenc_h264.c:361
enum AVPixelFormat ff_amf_pix_fmts[]
Supported formats.
Definition: amfenc.c:52
static const AVClass h264_amf_class
Definition: amfenc_h264.c:372
int ff_amf_receive_packet(AVCodecContext *avctx, AVPacket *avpkt)
Definition: amfenc.c:704
AMF encoder context.
Definition: amfenc.h:46
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:266
static av_cold int amf_encode_init_h264(AVCodecContext *avctx)
Definition: amfenc_h264.c:127

Definition at line 379 of file amfenc_h264.c.