MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / vp7_decode_init

Function vp7_decode_init

libavcodec/vp8.c:2929–2940  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2927}
2928
2929av_cold static int vp7_decode_init(AVCodecContext *avctx)
2930{
2931 VP8Context *s = avctx->priv_data;
2932
2933 vp78_decode_init(avctx);
2934 ff_h264_pred_init(&s->hpc, AV_CODEC_ID_VP7, 8, 1);
2935 ff_vp7dsp_init(&s->vp8dsp);
2936 s->decode_mb_row_no_filter = vp7_decode_mb_row_no_filter;
2937 s->filter_mb_row = vp7_filter_mb_row;
2938
2939 return 0;
2940}
2941
2942const FFCodec ff_vp7_decoder = {
2943 .p.name = "vp7",

Callers

nothing calls this directly

Calls 3

vp78_decode_initFunction · 0.85
ff_h264_pred_initFunction · 0.85
ff_vp7dsp_initFunction · 0.85

Tested by

no test coverage detected