| 2364 | } |
| 2365 | |
| 2366 | av_cold void ff_decode_internal_uninit(AVCodecContext *avctx) |
| 2367 | { |
| 2368 | #if CONFIG_LIBLCEVC_DEC |
| 2369 | AVCodecInternal *avci = avctx->internal; |
| 2370 | DecodeContext *dc = decode_ctx(avci); |
| 2371 | |
| 2372 | av_refstruct_unref(&dc->lcevc.ctx); |
| 2373 | #endif |
| 2374 | } |
| 2375 | |
| 2376 | static int attach_displaymatrix(AVCodecContext *avctx, AVFrame *frame, int orientation) |
| 2377 | { |
no test coverage detected