| 795 | |
| 796 | |
| 797 | static av_cold void common_init(AVCodecContext *avctx){ |
| 798 | FourXContext * const f = avctx->priv_data; |
| 799 | |
| 800 | dsputil_init(&f->dsp, avctx); |
| 801 | |
| 802 | f->avctx= avctx; |
| 803 | } |
| 804 | |
| 805 | static av_cold int decode_init(AVCodecContext *avctx){ |
| 806 | FourXContext * const f = avctx->priv_data; |
no test coverage detected