| 64 | } |
| 65 | |
| 66 | PlaneContext* ff_ffv1_planes_alloc(void) |
| 67 | { |
| 68 | return av_refstruct_alloc_ext(sizeof(PlaneContext) * MAX_PLANES, |
| 69 | 0, NULL, planes_free); |
| 70 | } |
| 71 | |
| 72 | av_cold int ff_ffv1_init_slice_state(const FFV1Context *f, |
| 73 | FFV1SliceContext *sc) |
no test coverage detected