FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
libx264.c File Reference
#include "libavutil/eval.h"
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "libavutil/mem.h"
#include "libavutil/pixdesc.h"
#include "libavutil/stereo3d.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>

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
 

Functions

static void X264_log (void *p, int level, const char *fmt, va_list args)
 
static int encode_nals (AVCodecContext *ctx, AVPacket *pkt, const 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 []
 
static const AVClass x264_class
 
static const AVClass rgbclass
 
static const AVCodecDefault x264_defaults []
 
AVCodec ff_libx264_encoder
 
AVCodec ff_libx264rgb_encoder
 

Macro Definition Documentation

#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) \
av_log(avctx, AV_LOG_ERROR, \
"bad option '%s': '%s'\n", opt, param); \
"bad value for '%s': '%s'\n", opt, param); \
return -1; \
} \
} while (0)

Definition at line 318 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);\
}

Definition at line 360 of file libx264.c.

Referenced by X264_init().

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

Definition at line 770 of file libx264.c.

Definition at line 771 of file libx264.c.

Function Documentation

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

Definition at line 87 of file libx264.c.

Referenced by X264_init().

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

Definition at line 103 of file libx264.c.

Referenced by X264_frame().

static int avfmt2_num_planes ( int  avfmt)
static

Definition at line 141 of file libx264.c.

Referenced by X264_frame().

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

Definition at line 160 of file libx264.c.

static av_cold int X264_close ( AVCodecContext avctx)
static

Definition at line 303 of file libx264.c.

Referenced by X264_init().

static int convert_pix_fmt ( enum AVPixelFormat  pix_fmt)
static

Definition at line 332 of file libx264.c.

Referenced by X264_init().

static av_cold int X264_init ( AVCodecContext avctx)
static

Definition at line 366 of file libx264.c.

static av_cold void X264_init_static ( AVCodec codec)
static

Definition at line 760 of file libx264.c.

Variable Documentation

enum AVPixelFormat pix_fmts_8bit[]
static
enum AVPixelFormat pix_fmts_9bit[]
static
Initial value:

Definition at line 740 of file libx264.c.

Referenced by X264_init_static().

enum AVPixelFormat pix_fmts_10bit[]
static
enum AVPixelFormat pix_fmts_8bit_rgb[]
static
Initial value:

Definition at line 752 of file libx264.c.

const AVOption options[]
static

Definition at line 772 of file libx264.c.

const AVClass x264_class
static
Initial value:
= {
.class_name = "libx264",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 834 of file libx264.c.

const AVClass rgbclass
static
Initial value:
= {
.class_name = "libx264rgb",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 841 of file libx264.c.

const AVCodecDefault x264_defaults[]
static
Initial value:
= {
{ "b", "0" },
{ "bf", "-1" },
{ "flags2", "0" },
{ "g", "-1" },
{ "i_qfactor", "-1" },
{ "b_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 },
}

Definition at line 848 of file libx264.c.

AVCodec ff_libx264_encoder
Initial value:
= {
.name = "libx264",
.long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
.priv_data_size = sizeof(X264Context),
.encode2 = X264_frame,
.close = X264_close,
.priv_class = &x264_class,
}

Definition at line 879 of file libx264.c.

AVCodec ff_libx264rgb_encoder
Initial value:
= {
.name = "libx264rgb",
.long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
.priv_data_size = sizeof(X264Context),
.encode2 = X264_frame,
.close = X264_close,
.priv_class = &rgbclass,
.pix_fmts = pix_fmts_8bit_rgb,
}

Definition at line 894 of file libx264.c.