FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
v410enc.c File Reference
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.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

AVCodec ff_v410_encoder
 

Function Documentation

static av_cold int v410_encode_init ( AVCodecContext avctx)
static

Definition at line 28 of file v410enc.c.

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

Definition at line 38 of file v410enc.c.

Variable Documentation

AVCodec ff_v410_encoder
Initial value:
= {
.name = "v410",
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:4:4 10-bit"),
.encode2 = v410_encode_frame,
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV444P10, AV_PIX_FMT_NONE },
}
static av_cold int v410_encode_init(AVCodecContext *avctx)
Definition: v410enc.c:28
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:344
static int v410_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
Definition: v410enc.c:38
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60

Definition at line 80 of file v410enc.c.