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

Go to the source code of this file.

Functions

static av_cold int y41p_encode_init (AVCodecContext *avctx)
 
static int y41p_encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
 
static av_cold int y41p_encode_close (AVCodecContext *avctx)
 

Variables

AVCodec ff_y41p_encoder
 

Function Documentation

static av_cold int y41p_encode_init ( AVCodecContext avctx)
static

Definition at line 26 of file y41penc.c.

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

Definition at line 39 of file y41penc.c.

static av_cold int y41p_encode_close ( AVCodecContext avctx)
static

Definition at line 78 of file y41penc.c.

Variable Documentation

AVCodec ff_y41p_encoder
Initial value:
= {
.name = "y41p",
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed YUV 4:1:1 12-bit"),
.encode2 = y41p_encode_frame,
.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV411P,
.capabilities = AV_CODEC_CAP_INTRA_ONLY,
}
static av_cold int y41p_encode_close(AVCodecContext *avctx)
Definition: y41penc.c:78
#define AV_CODEC_CAP_INTRA_ONLY
Codec is intra only.
Definition: avcodec.h:1095
static int y41p_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
Definition: y41penc.c:39
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
static av_cold int y41p_encode_init(AVCodecContext *avctx)
Definition: y41penc.c:26
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:69
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60

Definition at line 83 of file y41penc.c.