libx264.c File Reference
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "libavutil/mem.h"
#include "libavutil/pixdesc.h"
#include "avcodec.h"
#include "internal.h"
#include <x264.h>
#include <float.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Include dependency graph for libx264.c:

Go to the source code of this file.

Data Structures

struct  X264Context
 

Macros

#define OPT_STR(opt, param)
 
#define PARSE_X264_OPT(name, var)
 
#define OFFSET(x)   offsetof(X264Context, x)
 
#define VE   AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
 

Typedefs

typedef struct X264Context X264Context
 

Functions

static void X264_log (void *p, int level, const char *fmt, va_list args)
 
static int encode_nals (AVCodecContext *ctx, AVPacket *pkt, x264_nal_t *nals, int nnal)
 
static int avfmt2_num_planes (int avfmt)
 
static int X264_frame (AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
 
static av_cold int X264_close (AVCodecContext *avctx)
 
static int convert_pix_fmt (enum AVPixelFormat pix_fmt)
 
static av_cold int X264_init (AVCodecContext *avctx)
 
static av_cold void X264_init_static (AVCodec *codec)
 

Variables

static enum AVPixelFormat pix_fmts_8bit []
 
static enum AVPixelFormat pix_fmts_9bit []
 
static enum AVPixelFormat pix_fmts_10bit []
 
static enum AVPixelFormat pix_fmts_8bit_rgb []
 
static const AVOption options []
 
class {
      class_name = "libx264"
 
      item_name = av_default_item_name
 
      option = options
 
      version = LIBAVUTIL_VERSION_INT
 
}; 
 
static const AVClass rgbclass
 
static const AVCodecDefault x264_defaults []
 
AVCodec ff_libx264_encoder
 
AVCodec ff_libx264rgb_encoder
 

Macro Definition Documentation

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

Definition at line 620 of file libx264.c.

#define OPT_STR (   opt,
  param 
)
Value:
do { \
int ret; \
if (param && (ret = x264_param_parse(&x4->params, opt, param)) < 0) { \
if(ret == X264_PARAM_BAD_NAME) \
"bad option '%s': '%s'\n", opt, param); \
"bad value for '%s': '%s'\n", opt, param); \
return -1; \
} \
} while (0)
initialize output if(nPeaks >3)%at least 3 peaks in spectrum for trying to find f0 nf0peaks
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
ret
Definition: avfilter.c:821
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame This method is called when a frame is wanted on an output For an it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return it should return
x4
Definition: Lab2 1d.m:1

Definition at line 237 of file libx264.c.

Referenced by X264_init().

#define PARSE_X264_OPT (   name,
  var 
)
Value:
if (x4->var && x264_param_parse(&x4->params, name, x4->var) < 0) {\
av_log(avctx, AV_LOG_ERROR, "Error parsing option '%s' with value '%s'.\n", name, x4->var);\
return AVERROR(EINVAL);\
}
const char * name
Definition: avisynth_c.h:675
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame This method is called when a frame is wanted on an output For an it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return it should return
x4
Definition: Lab2 1d.m:1

Definition at line 274 of file libx264.c.

Referenced by X264_init().

Definition at line 621 of file libx264.c.

Typedef Documentation

typedef struct X264Context X264Context

Function Documentation

static int avfmt2_num_planes ( int  avfmt)
static

Definition at line 133 of file libx264.c.

Referenced by X264_frame().

static int convert_pix_fmt ( enum AVPixelFormat  pix_fmt)
static

Definition at line 251 of file libx264.c.

Referenced by X264_init().

static int encode_nals ( AVCodecContext ctx,
AVPacket pkt,
x264_nal_t *  nals,
int  nnal 
)
static

Definition at line 95 of file libx264.c.

Referenced by X264_frame().

static av_cold int X264_close ( AVCodecContext avctx)
static

Definition at line 224 of file libx264.c.

static int X264_frame ( AVCodecContext ctx,
AVPacket pkt,
const AVFrame frame,
int *  got_packet 
)
static

Definition at line 152 of file libx264.c.

static av_cold int X264_init ( AVCodecContext avctx)
static

Definition at line 280 of file libx264.c.

static av_cold void X264_init_static ( AVCodec codec)
static

Definition at line 610 of file libx264.c.

static void X264_log ( void p,
int  level,
const char *  fmt,
va_list  args 
)
static

Definition at line 79 of file libx264.c.

Referenced by X264_init().

Variable Documentation

const { ... }
class_name = "libx264"
private

Definition at line 680 of file libx264.c.

AVCodec ff_libx264_encoder
Initial value:
= {
.name = "libx264",
.priv_data_size = sizeof(X264Context),
.encode2 = X264_frame,
.long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
.priv_class = &class,
.defaults = x264_defaults,
.init_static_data = X264_init_static,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int X264_init(AVCodecContext *avctx)
Definition: libx264.c:280
#define CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
#define CODEC_CAP_AUTO_THREADS
Codec supports avctx->thread_count == 0 (auto).
static const AVCodecDefault x264_defaults[]
Definition: libx264.c:693
static av_cold int X264_close(AVCodecContext *avctx)
Definition: libx264.c:224
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
struct X264Context X264Context
static av_cold void X264_init_static(AVCodec *codec)
Definition: libx264.c:610
static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: libx264.c:152

Definition at line 723 of file libx264.c.

AVCodec ff_libx264rgb_encoder
Initial value:
= {
.name = "libx264rgb",
.priv_data_size = sizeof(X264Context),
.encode2 = X264_frame,
.capabilities = CODEC_CAP_DELAY,
.long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
.priv_class = &rgbclass,
.defaults = x264_defaults,
.pix_fmts = pix_fmts_8bit_rgb,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static enum AVPixelFormat pix_fmts_8bit_rgb[]
Definition: libx264.c:602
static av_cold int X264_init(AVCodecContext *avctx)
Definition: libx264.c:280
static const AVClass rgbclass
Definition: libx264.c:686
#define CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static const AVCodecDefault x264_defaults[]
Definition: libx264.c:693
static av_cold int X264_close(AVCodecContext *avctx)
Definition: libx264.c:224
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
struct X264Context X264Context
static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: libx264.c:152

Definition at line 738 of file libx264.c.

item_name = av_default_item_name
private

Definition at line 681 of file libx264.c.

option = options
private

Definition at line 682 of file libx264.c.

const AVOption options[]
static

Definition at line 622 of file libx264.c.

enum AVPixelFormat pix_fmts_10bit[]
static
Initial value:
= {
}
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:281
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:279
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:280

Definition at line 596 of file libx264.c.

Referenced by X264_init_static().

enum AVPixelFormat pix_fmts_8bit[]
static
Initial value:
= {
}
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:73
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:72
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV420P and setting color_...
Definition: pixfmt.h:80
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:68

Definition at line 584 of file libx264.c.

Referenced by X264_init_static().

enum AVPixelFormat pix_fmts_8bit_rgb[]
static
Initial value:

Definition at line 602 of file libx264.c.

enum AVPixelFormat pix_fmts_9bit[]
static
Initial value:
= {
}
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:278
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:276

Definition at line 591 of file libx264.c.

Referenced by X264_init_static().

const AVClass rgbclass
static
Initial value:
= {
.class_name = "libx264rgb",
.item_name = av_default_item_name,
.option = options,
}
av_default_item_name
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
static const AVOption options[]
Definition: libx264.c:622

Definition at line 686 of file libx264.c.

version = LIBAVUTIL_VERSION_INT
private

Definition at line 683 of file libx264.c.

const AVCodecDefault x264_defaults[]
static
Initial value:
= {
{ "b", "0" },
{ "bf", "-1" },
{ "flags2", "0" },
{ "g", "-1" },
{ "i_qfactor", "-1" },
{ "qmin", "-1" },
{ "qmax", "-1" },
{ "qdiff", "-1" },
{ "qblur", "-1" },
{ "qcomp", "-1" },
{ "refs", "-1" },
{ "sc_threshold", "-1" },
{ "trellis", "-1" },
{ "nr", "-1" },
{ "me_range", "-1" },
{ "me_method", "-1" },
{ "subq", "-1" },
{ "b_strategy", "-1" },
{ "keyint_min", "-1" },
{ "coder", "-1" },
{ "cmp", "-1" },
{ "threads", AV_STRINGIFY(X264_THREADS_AUTO) },
{ "thread_type", "0" },
{ "flags", "+cgop" },
{ "rc_init_occupancy","-1" },
{ NULL },
}
NULL
Definition: eval.c:55
#define AV_STRINGIFY(s)

Definition at line 693 of file libx264.c.