FFmpeg
Data Structures | Macros | Functions | Variables
v210dec.c File Reference
#include "avcodec.h"
#include "codec_internal.h"
#include "v210dec.h"
#include "v210dec_init.h"
#include "libavutil/bswap.h"
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mem.h"
#include "thread.h"

Go to the source code of this file.

Data Structures

struct  ThreadData
 Used for passing data between threads. More...
 

Macros

#define V210DEC_FLAGS   AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
 

Functions

static av_cold int decode_init (AVCodecContext *avctx)
 
static void decode_row (const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, const int width, void(*unpack_frame)(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width))
 
static int v210_decode_slice (AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
 
static int v210_stride (int width, int align)
 
static int decode_frame (AVCodecContext *avctx, AVFrame *pic, int *got_frame, AVPacket *avpkt)
 

Variables

static const AVOption v210dec_options []
 
static const AVClass v210dec_class
 
const FFCodec ff_v210_decoder
 

Macro Definition Documentation

◆ V210DEC_FLAGS

Definition at line 222 of file v210dec.c.

Function Documentation

◆ decode_init()

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 41 of file v210dec.c.

◆ decode_row()

static void decode_row ( const uint32_t *  src,
uint16_t *  y,
uint16_t *  u,
uint16_t *  v,
const int  width,
void(*)(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width unpack_frame 
)
static

Definition at line 55 of file v210dec.c.

Referenced by decode_frame(), and v210_decode_slice().

◆ v210_decode_slice()

static int v210_decode_slice ( AVCodecContext avctx,
void *  arg,
int  jobnr,
int  threadnr 
)
static

Definition at line 107 of file v210dec.c.

Referenced by decode_frame().

◆ v210_stride()

static int v210_stride ( int  width,
int  align 
)
static

Definition at line 131 of file v210dec.c.

Referenced by decode_frame().

◆ decode_frame()

static int decode_frame ( AVCodecContext avctx,
AVFrame pic,
int got_frame,
AVPacket avpkt 
)
static

Definition at line 136 of file v210dec.c.

Variable Documentation

◆ v210dec_options

const AVOption v210dec_options[]
static
Initial value:
= {
{"custom_stride", "Custom V210 stride", 0x42, AV_OPT_TYPE_INT,
{.i64 = 0}, -1, INT_MAX, V210DEC_FLAGS},
{NULL}
}

Definition at line 223 of file v210dec.c.

◆ v210dec_class

const AVClass v210dec_class
static
Initial value:
= {
.class_name = "V210 Decoder",
.item_name = av_default_item_name,
.option = v210dec_options,
}

Definition at line 229 of file v210dec.c.

◆ ff_v210_decoder

const FFCodec ff_v210_decoder
Initial value:
= {
.p.name = "v210",
CODEC_LONG_NAME("Uncompressed 4:2:2 10-bit"),
.p.type = AVMEDIA_TYPE_VIDEO,
.priv_data_size = sizeof(V210DecContext),
.p.capabilities = AV_CODEC_CAP_DR1 |
.p.priv_class = &v210dec_class,
}

Definition at line 236 of file v210dec.c.

v210dec_options
static const AVOption v210dec_options[]
Definition: v210dec.c:223
decode_init
static av_cold int decode_init(AVCodecContext *avctx)
Definition: v210dec.c:41
decode_frame
static int decode_frame(AVCodecContext *avctx, AVFrame *pic, int *got_frame, AVPacket *avpkt)
Definition: v210dec.c:136
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:286
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:271
V210DecContext
Definition: v210dec.h:26
AV_CODEC_CAP_FRAME_THREADS
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: codec.h:110
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
NULL
#define NULL
Definition: coverity.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:366
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AV_CODEC_ID_V210
@ AV_CODEC_ID_V210
Definition: codec_id.h:179
AV_CODEC_CAP_SLICE_THREADS
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: codec.h:114
v210dec_class
static const AVClass v210dec_class
Definition: v210dec.c:229
V210DEC_FLAGS
#define V210DEC_FLAGS
Definition: v210dec.c:222
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201