diff options
author | agalin89 <[email protected]> | 2020-07-24 02:12:22 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2020-07-28 20:26:06 +0100 |
commit | 9944f69c0dba9abeb47bf1842bc61c0ee19e5475 (patch) | |
tree | 419debe8fed21956d6bdbfa1fa172fd0ca743bcb /libhb/enc_qsv.c | |
parent | 20778280638af215d9e341f78b1896917ea3a4ff (diff) |
qsv: improved memory management
Diffstat (limited to 'libhb/enc_qsv.c')
-rw-r--r-- | libhb/enc_qsv.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/libhb/enc_qsv.c b/libhb/enc_qsv.c index 751591e4d..91055243a 100644 --- a/libhb/enc_qsv.c +++ b/libhb/enc_qsv.c @@ -756,9 +756,6 @@ int qsv_enc_init(hb_work_private_t *pv) // if only for encode if (pv->is_sys_mem) { - // no need to use additional sync as encode only -> single thread - hb_qsv_add_context_usage(qsv, 0); - // re-use the session from encqsvInit qsv->mfx_session = pv->mfx_session; } @@ -1766,9 +1763,6 @@ void encqsvClose(hb_work_object_t *w) hb_qsv_uninit_enc(pv->job); - /* QSV context cleanup and MFXClose */ - hb_qsv_context_clean(qsv_ctx,hb_qsv_full_path_is_enabled(pv->job)); - hb_display_close(&pv->display); if (qsv_enc_space != NULL) @@ -2152,11 +2146,11 @@ static int qsv_enc_work(hb_work_private_t *pv, { if (hb_qsv_hw_filters_are_enabled(pv->job)) { - hb_qsv_release_surface_from_pool(pv->job->qsv.ctx->hb_vpp_qsv_frames_ctx, surface->Data.MemId); + hb_qsv_release_surface_from_pool_by_surface_pointer(pv->job->qsv.ctx->hb_vpp_qsv_frames_ctx, surface); } else { - hb_qsv_release_surface_from_pool(pv->job->qsv.ctx->hb_dec_qsv_frames_ctx, surface->Data.MemId); + hb_qsv_release_surface_from_pool_by_surface_pointer(pv->job->qsv.ctx->hb_dec_qsv_frames_ctx, surface); } } |