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

Go to the source code of this file.

Functions

static av_cold int y216_decode_init (AVCodecContext *avctx)
 
static int y216_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 

Variables

AVCodec ff_targa_y216_decoder
 

Function Documentation

static av_cold int y216_decode_init ( AVCodecContext avctx)
static

Definition at line 25 of file targa_y216dec.c.

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

Definition at line 33 of file targa_y216dec.c.

Variable Documentation

AVCodec ff_targa_y216_decoder
Initial value:
= {
.name = "targa_y216",
.long_name = NULL_IF_CONFIG_SMALL("Pinnacle TARGA CineWave YUV16"),
.decode = y216_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
static int y216_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: targa_y216dec.c:33
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static av_cold int y216_decode_init(AVCodecContext *avctx)
Definition: targa_y216dec.c:25
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:956

Definition at line 75 of file targa_y216dec.c.