FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
v308enc.c File Reference
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "internal.h"

Go to the source code of this file.

Functions

static av_cold int v308_encode_init (AVCodecContext *avctx)
 
static int v308_encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
 
static av_cold int v308_encode_close (AVCodecContext *avctx)
 

Variables

AVCodec ff_v308_encoder
 

Function Documentation

static av_cold int v308_encode_init ( AVCodecContext avctx)
static

Definition at line 27 of file v308enc.c.

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

Definition at line 40 of file v308enc.c.

static av_cold int v308_encode_close ( AVCodecContext avctx)
static

Definition at line 71 of file v308enc.c.

Variable Documentation

AVCodec ff_v308_encoder
Initial value:
= {
.name = "v308",
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed 4:4:4"),
.encode2 = v308_encode_frame,
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV444P, AV_PIX_FMT_NONE },
.capabilities = AV_CODEC_CAP_INTRA_ONLY,
}
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:71
#define AV_CODEC_CAP_INTRA_ONLY
Codec is intra only.
Definition: avcodec.h:1054
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
static int v308_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
Definition: v308enc.c:40
static av_cold int v308_encode_close(AVCodecContext *avctx)
Definition: v308enc.c:71
static av_cold int v308_encode_init(AVCodecContext *avctx)
Definition: v308enc.c:27
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64

Definition at line 76 of file v308enc.c.