#include "avcodec.h"
Go to the source code of this file.
Functions | |
static av_cold int | yuv4_encode_init (AVCodecContext *avctx) |
static int | yuv4_encode_frame (AVCodecContext *avctx, uint8_t *buf, int buf_size, void *data) |
static av_cold int | yuv4_encode_close (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_yuv4_encoder |
static av_cold int yuv4_encode_close | ( | AVCodecContext * | avctx | ) | [static] |
static int yuv4_encode_frame | ( | AVCodecContext * | avctx, | |
uint8_t * | buf, | |||
int | buf_size, | |||
void * | data | |||
) | [static] |
static av_cold int yuv4_encode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{ .name = "yuv4", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_YUV4, .init = yuv4_encode_init, .encode = yuv4_encode_frame, .close = yuv4_encode_close, .pix_fmts = (const enum PixelFormat[]){ PIX_FMT_YUV420P, PIX_FMT_NONE }, .long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed 4:2:0"), }