| 1559 | } |
| 1560 | |
| 1561 | static av_cold int vulkan_encode_h264_close(AVCodecContext *avctx) |
| 1562 | { |
| 1563 | VulkanEncodeH264Context *enc = avctx->priv_data; |
| 1564 | ff_vulkan_encode_uninit(&enc->common); |
| 1565 | return 0; |
| 1566 | } |
| 1567 | |
| 1568 | #define OFFSET(x) offsetof(VulkanEncodeH264Context, x) |
| 1569 | #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM) |
nothing calls this directly
no test coverage detected