mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-08 16:54:03 +02:00
hwcontext: Perform usual uninitialisation on derived frames contexts
This commit is contained in:
parent
caecb85014
commit
e412d683fe
@ -205,19 +205,16 @@ static void hwframe_ctx_free(void *opaque, uint8_t *data)
|
||||
{
|
||||
AVHWFramesContext *ctx = (AVHWFramesContext*)data;
|
||||
|
||||
if (ctx->internal->source_frames) {
|
||||
av_buffer_unref(&ctx->internal->source_frames);
|
||||
if (ctx->internal->pool_internal)
|
||||
av_buffer_pool_uninit(&ctx->internal->pool_internal);
|
||||
|
||||
} else {
|
||||
if (ctx->internal->pool_internal)
|
||||
av_buffer_pool_uninit(&ctx->internal->pool_internal);
|
||||
if (ctx->internal->hw_type->frames_uninit)
|
||||
ctx->internal->hw_type->frames_uninit(ctx);
|
||||
|
||||
if (ctx->internal->hw_type->frames_uninit)
|
||||
ctx->internal->hw_type->frames_uninit(ctx);
|
||||
if (ctx->free)
|
||||
ctx->free(ctx);
|
||||
|
||||
if (ctx->free)
|
||||
ctx->free(ctx);
|
||||
}
|
||||
av_buffer_unref(&ctx->internal->source_frames);
|
||||
|
||||
av_buffer_unref(&ctx->device_ref);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user