| 1357 | } |
| 1358 | |
| 1359 | static av_cold int vulkan_encode_av1_close(AVCodecContext *avctx) |
| 1360 | { |
| 1361 | VulkanEncodeAV1Context *enc = avctx->priv_data; |
| 1362 | av_free(enc->padding_payload); |
| 1363 | ff_vulkan_encode_uninit(&enc->common); |
| 1364 | return 0; |
| 1365 | } |
| 1366 | |
| 1367 | #define OFFSET(x) offsetof(VulkanEncodeAV1Context, x) |
| 1368 | #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM) |
nothing calls this directly
no test coverage detected