FFmpeg
Variables
vp5.c File Reference

VP5 compatible video decoder. More...

#include <stdlib.h>
#include <string.h>
#include "avcodec.h"
#include "internal.h"
#include "vp56.h"
#include "vp56data.h"
#include "vp5data.h"

Variables

AVCodec ff_vp5_decoder
 

Detailed Description

VP5 compatible video decoder.

Variable Documentation

§ ff_vp5_decoder

AVCodec ff_vp5_decoder
Initial value:
= {
.name = "vp5",
.long_name = NULL_IF_CONFIG_SMALL("On2 VP5"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_VP5,
.priv_data_size = sizeof(VP56Context),
.init = vp5_decode_init,
.close = ff_vp56_free,
.decode = ff_vp56_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
Definition: vp56.h:122
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959