hwcontext: Perform usual uninitialisation on derived frames contexts

This commit is contained in:
Mark Thompson 2017-06-26 20:28:07 +01:00
parent 5514bab37a
commit 0f93cef2d6
1 changed files with 7 additions and 10 deletions

View File

@ -217,19 +217,16 @@ static void hwframe_ctx_free(void *opaque, uint8_t *data)
{ {
AVHWFramesContext *ctx = (AVHWFramesContext*)data; AVHWFramesContext *ctx = (AVHWFramesContext*)data;
if (ctx->internal->source_frames) { if (ctx->internal->pool_internal)
av_buffer_unref(&ctx->internal->source_frames); av_buffer_pool_uninit(&ctx->internal->pool_internal);
} else { if (ctx->internal->hw_type->frames_uninit)
if (ctx->internal->pool_internal) ctx->internal->hw_type->frames_uninit(ctx);
av_buffer_pool_uninit(&ctx->internal->pool_internal);
if (ctx->internal->hw_type->frames_uninit) if (ctx->free)
ctx->internal->hw_type->frames_uninit(ctx); ctx->free(ctx);
if (ctx->free) av_buffer_unref(&ctx->internal->source_frames);
ctx->free(ctx);
}
av_buffer_unref(&ctx->device_ref); av_buffer_unref(&ctx->device_ref);