#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) |
| 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 |
Definition in file vp5.c.
| static av_cold int vp5_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
| static void vp5_default_models_init | ( | VP56Context * | s | ) | [static] |
| static void vp5_parse_coeff | ( | VP56Context * | s | ) | [static] |
| static int vp5_parse_coeff_models | ( | VP56Context * | s | ) | [static] |
| static int vp5_parse_header | ( | VP56Context * | s, | |
| const uint8_t * | buf, | |||
| int | buf_size | |||
| ) | [static] |
| static void vp5_parse_vector_adjustment | ( | VP56Context * | s, | |
| VP56mv * | vect | |||
| ) | [static] |
| static void vp5_parse_vector_models | ( | VP56Context * | s | ) | [static] |
Initial value:
{
.name = "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 = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("On2 VP5"),
}
1.5.8