FFmpeg
Functions | Variables
v410enc.c File Reference
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "encode.h"
#include "internal.h"

Go to the source code of this file.

Functions

static av_cold int v410_encode_init (AVCodecContext *avctx)
 
static int v410_encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
 

Variables

const AVCodec ff_v410_encoder
 

Function Documentation

◆ v410_encode_init()

static av_cold int v410_encode_init ( AVCodecContext avctx)
static

Definition at line 29 of file v410enc.c.

◆ v410_encode_frame()

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

Definition at line 42 of file v410enc.c.

Variable Documentation

◆ ff_v410_encoder

const AVCodec ff_v410_encoder
Initial value:
= {
.name = "v410",
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:4:4 10-bit"),
.capabilities = AV_CODEC_CAP_DR1,
.encode2 = v410_encode_frame,
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV444P10, AV_PIX_FMT_NONE },
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
}

Definition at line 76 of file v410enc.c.

FF_CODEC_CAP_INIT_THREADSAFE
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:42
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
v410_encode_init
static av_cold int v410_encode_init(AVCodecContext *avctx)
Definition: v410enc.c:29
AV_PIX_FMT_YUV444P10
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:407
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
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
AV_CODEC_ID_V410
@ AV_CODEC_ID_V410
Definition: codec_id.h:207
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
v410_encode_frame
static int v410_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
Definition: v410enc.c:42