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

Go to the source code of this file.

Functions

static av_cold int y41p_decode_init (AVCodecContext *avctx)
 
static int y41p_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 

Variables

AVCodec ff_y41p_decoder
 

Function Documentation

static av_cold int y41p_decode_init ( AVCodecContext avctx)
static

Definition at line 26 of file y41pdec.c.

static int y41p_decode_frame ( AVCodecContext avctx,
void data,
int got_frame,
AVPacket avpkt 
)
static

Definition at line 38 of file y41pdec.c.

Variable Documentation

AVCodec ff_y41p_decoder
Initial value:
= {
.name = "y41p",
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed YUV 4:1:1 12-bit"),
.decode = y41p_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
static int y41p_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: y41pdec.c:38
#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_decode_init(AVCodecContext *avctx)
Definition: y41pdec.c:26
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:994

Definition at line 84 of file y41pdec.c.