diff options
author | Dmitrichenko, Max <[email protected]> | 2020-06-26 22:33:02 +0200 |
---|---|---|
committer | Scott <[email protected]> | 2020-07-11 21:15:06 +0100 |
commit | aad325b854b2a3abd6a353dd2a5ccc9060dbe211 (patch) | |
tree | bdbb207eea6a2cd8839c02fbef6e8e6522ec5fce /libhb/handbrake | |
parent | c1c88ce358673128348f084c60442be1fffaf5c2 (diff) |
qsv: fix memory leak while closing session
Diffstat (limited to 'libhb/handbrake')
-rw-r--r-- | libhb/handbrake/qsv_libav.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/handbrake/qsv_libav.h b/libhb/handbrake/qsv_libav.h index 75b32db90..3fdf7e231 100644 --- a/libhb/handbrake/qsv_libav.h +++ b/libhb/handbrake/qsv_libav.h @@ -460,7 +460,7 @@ void hb_qsv_dts_pop(hb_qsv_context *); hb_qsv_stage *hb_qsv_stage_init(void); void hb_qsv_stage_clean(hb_qsv_stage **); -int hb_qsv_context_clean(hb_qsv_context *); +int hb_qsv_context_clean(hb_qsv_context *, int); int ff_qsv_is_sync_in_pipe(mfxSyncPoint *, hb_qsv_context *); int ff_qsv_is_surface_in_pipe(mfxFrameSurface1 *, hb_qsv_context *); |