#include "avcodec.h"
Go to the source code of this file.
Function Documentation
static av_cold int yuv4_decode_close |
( |
AVCodecContext * |
avctx |
) |
[static] |
static int yuv4_decode_frame |
( |
AVCodecContext * |
avctx, |
|
|
void * |
data, |
|
|
int * |
data_size, |
|
|
AVPacket * |
avpkt | |
|
) |
| | [static] |
static av_cold int yuv4_decode_init |
( |
AVCodecContext * |
avctx |
) |
[static] |
Variable Documentation
Initial value: {
.name = "yuv4",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_YUV4,
.init = yuv4_decode_init,
.decode = yuv4_decode_frame,
.close = yuv4_decode_close,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed 4:2:0"),
}
Definition at line 100 of file yuv4dec.c.