| 1196 | } |
| 1197 | |
| 1198 | void ff_hwaccel_uninit(AVCodecContext *avctx) |
| 1199 | { |
| 1200 | if (FF_HW_HAS_CB(avctx, uninit)) |
| 1201 | FF_HW_SIMPLE_CALL(avctx, uninit); |
| 1202 | |
| 1203 | av_freep(&avctx->internal->hwaccel_priv_data); |
| 1204 | |
| 1205 | avctx->hwaccel = NULL; |
| 1206 | |
| 1207 | av_buffer_unref(&avctx->hw_frames_ctx); |
| 1208 | } |
| 1209 | |
| 1210 | int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt) |
| 1211 | { |
no test coverage detected