mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
va: encoder: Fix error code path when open.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1845>
This commit is contained in:
parent
81c00664a2
commit
7aa597d6df
1 changed files with 2 additions and 2 deletions
|
@ -482,10 +482,10 @@ error:
|
|||
g_clear_pointer (&reconstruct_buffers, g_ptr_array_unref);
|
||||
g_clear_pointer (&recon_pool, gst_object_unref);
|
||||
|
||||
if (config == VA_INVALID_ID)
|
||||
if (config != VA_INVALID_ID)
|
||||
vaDestroyConfig (dpy, config);
|
||||
|
||||
if (context == VA_INVALID_ID)
|
||||
if (context != VA_INVALID_ID)
|
||||
vaDestroyContext (dpy, context);
|
||||
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue