| 2927 | } |
| 2928 | |
| 2929 | av_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 | |
| 2942 | const FFCodec ff_vp7_decoder = { |
| 2943 | .p.name = "vp7", |
nothing calls this directly
no test coverage detected