| 179 | } |
| 180 | |
| 181 | static av_cold void free_buffer_pools(BufferPoolContext *pools) |
| 182 | { |
| 183 | av_refstruct_pool_uninit(&pools->mbskip_table_pool); |
| 184 | av_refstruct_pool_uninit(&pools->qscale_table_pool); |
| 185 | av_refstruct_pool_uninit(&pools->mb_type_pool); |
| 186 | av_refstruct_pool_uninit(&pools->motion_val_pool); |
| 187 | av_refstruct_pool_uninit(&pools->ref_index_pool); |
| 188 | pools->alloc_mb_height = pools->alloc_mb_width = pools->alloc_mb_stride = 0; |
| 189 | } |
| 190 | |
| 191 | av_cold int ff_mpv_init_context_frame(MpegEncContext *s) |
| 192 | { |
no test coverage detected