| 1696 | } |
| 1697 | |
| 1698 | static av_cold int vulkan_encode_h265_close(AVCodecContext *avctx) |
| 1699 | { |
| 1700 | VulkanEncodeH265Context *enc = avctx->priv_data; |
| 1701 | ff_vulkan_encode_uninit(&enc->common); |
| 1702 | return 0; |
| 1703 | } |
| 1704 | |
| 1705 | #define OFFSET(x) offsetof(VulkanEncodeH265Context, x) |
| 1706 | #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM) |
nothing calls this directly
no test coverage detected