#include <vpx/vpx_decoder.h>
#include <vpx/vp8dx.h>
#include "libavutil/imgutils.h"
#include "avcodec.h"
Go to the source code of this file.
Data Structures | |
| struct | VP8DecoderContext |
Defines | |
| #define | VPX_CODEC_DISABLE_COMPAT 1 |
Typedefs | |
| typedef struct VP8DecoderContext | VP8Context |
Functions | |
| static av_cold int | vp8_init (AVCodecContext *avctx) |
| static int | vp8_decode (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
| static av_cold int | vp8_free (AVCodecContext *avctx) |
Variables | |
| AVCodec | ff_libvpx_decoder |
Definition in file libvpxdec.c.
| #define VPX_CODEC_DISABLE_COMPAT 1 |
Definition at line 26 of file libvpxdec.c.
| typedef struct VP8DecoderContext VP8Context |
| static int vp8_decode | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| AVPacket * | avpkt | |||
| ) | [static] |
Definition at line 60 of file libvpxdec.c.
| static av_cold int vp8_free | ( | AVCodecContext * | avctx | ) | [static] |
| static av_cold int vp8_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 37 of file libvpxdec.c.
Initial value:
{
"libvpx",
AVMEDIA_TYPE_VIDEO,
CODEC_ID_VP8,
sizeof(VP8Context),
vp8_init,
NULL,
vp8_free,
vp8_decode,
0,
.long_name = NULL_IF_CONFIG_SMALL("libvpx VP8"),
}
Definition at line 114 of file libvpxdec.c.
1.5.8