FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
libx265.c File Reference
#include <x265.h>
#include "libavutil/internal.h"
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avcodec.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  libx265Context
 

Macros

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

Functions

static int is_keyframe (NalUnitType naltype)
 
static av_cold int libx265_encode_close (AVCodecContext *avctx)
 
static av_cold int libx265_encode_init (AVCodecContext *avctx)
 
static int libx265_encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
 
static av_cold void libx265_encode_init_csp (AVCodec *codec)
 

Variables

static enum AVPixelFormat x265_csp_eight []
 
static enum AVPixelFormat x265_csp_twelve []
 
static const AVOption options []
 
class {
      class_name = "libx265"
 
      item_name = av_default_item_name
 
      option = options
 
      version = LIBAVUTIL_VERSION_INT
 
}; 
 
static const AVCodecDefault x265_defaults []
 
AVCodec ff_libx265_encoder
 

Macro Definition Documentation

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

Definition at line 286 of file libx265.c.

Definition at line 287 of file libx265.c.

Function Documentation

static int is_keyframe ( NalUnitType  naltype)
static
static av_cold int libx265_encode_close ( AVCodecContext avctx)
static

Definition at line 62 of file libx265.c.

Referenced by libx265_encode_init().

static av_cold int libx265_encode_init ( AVCodecContext avctx)
static

Definition at line 76 of file libx265.c.

static int libx265_encode_frame ( AVCodecContext avctx,
AVPacket pkt,
const AVFrame pic,
int *  got_packet 
)
static

Definition at line 203 of file libx265.c.

static av_cold void libx265_encode_init_csp ( AVCodec codec)
static

Definition at line 278 of file libx265.c.

Variable Documentation

enum AVPixelFormat x265_csp_eight[]
static
Initial value:

Definition at line 261 of file libx265.c.

Referenced by libx265_encode_init_csp().

enum AVPixelFormat x265_csp_twelve[]
static
const AVOption options[]
static
Initial value:
= {
{ "preset", "set the x265 preset", OFFSET(preset), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
{ "tune", "set the x265 tune parameter", OFFSET(tune), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
{ "x265-params", "set the x265 configuration using a :-separated list of key=value parameters", OFFSET(x265_opts), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
{ NULL }
}

Definition at line 288 of file libx265.c.

class_name = "libx265"

Definition at line 296 of file libx265.c.

item_name = av_default_item_name

Definition at line 297 of file libx265.c.

option = options

Definition at line 298 of file libx265.c.

Definition at line 299 of file libx265.c.

const { ... }
const AVCodecDefault x265_defaults[]
static
Initial value:
= {
{ "b", "0" },
{ NULL },
}

Definition at line 302 of file libx265.c.

AVCodec ff_libx265_encoder
Initial value:
= {
.name = "libx265",
.long_name = NULL_IF_CONFIG_SMALL("libx265 H.265 / HEVC"),
.init_static_data = libx265_encode_init_csp,
.priv_data_size = sizeof(libx265Context),
.priv_class = &class,
}

Definition at line 307 of file libx265.c.