VP5 compatible video decoder. More...
#include <stdlib.h>#include <string.h>#include "avcodec.h"#include "dsputil.h"#include "get_bits.h"#include "vp56.h"#include "vp56data.h"#include "vp5data.h"Go to the source code of this file.
Functions | |
| static int | vp5_parse_header (VP56Context *s, const uint8_t *buf, int buf_size, int *golden_frame) |
| static void | vp5_parse_vector_adjustment (VP56Context *s, VP56mv *vect) |
| static void | vp5_parse_vector_models (VP56Context *s) |
| static int | vp5_parse_coeff_models (VP56Context *s) |
| static void | vp5_parse_coeff (VP56Context *s) |
| static void | vp5_default_models_init (VP56Context *s) |
| static av_cold int | vp5_decode_init (AVCodecContext *avctx) |
Variables | |
| AVCodec | ff_vp5_decoder |
VP5 compatible video decoder.
Definition in file vp5.c.
| static av_cold int vp5_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
| static void vp5_default_models_init | ( | VP56Context * | s | ) | [static] |
Definition at line 250 of file vp5.c.
Referenced by vp5_decode_init().
| static void vp5_parse_coeff | ( | VP56Context * | s | ) | [static] |
Definition at line 173 of file vp5.c.
Referenced by vp5_decode_init().
| static int vp5_parse_coeff_models | ( | VP56Context * | s | ) | [static] |
Definition at line 126 of file vp5.c.
Referenced by vp5_decode_init().
| static int vp5_parse_header | ( | VP56Context * | s, |
| const uint8_t * | buf, | ||
| int | buf_size, | ||
| int * | golden_frame | ||
| ) | [static] |
Definition at line 38 of file vp5.c.
Referenced by vp5_decode_init().
| static void vp5_parse_vector_adjustment | ( | VP56Context * | s, |
| VP56mv * | vect | ||
| ) | [static] |
Definition at line 79 of file vp5.c.
Referenced by vp5_decode_init().
| static void vp5_parse_vector_models | ( | VP56Context * | s | ) | [static] |
Definition at line 103 of file vp5.c.
Referenced by vp5_decode_init().
{
.name = "vp5",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_VP5,
.priv_data_size = sizeof(VP56Context),
.init = vp5_decode_init,
.close = ff_vp56_free,
.decode = ff_vp56_decode_frame,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("On2 VP5"),
}