msdk: Fix warning about unused variable on Windows

This commit is contained in:
Nirbheek Chauhan 2020-01-17 10:13:49 +05:30 committed by Haihao Xiang
parent c0d778c2c7
commit e83d5fd8d6
2 changed files with 4 additions and 0 deletions

View file

@ -1411,7 +1411,9 @@ gst_msdkenc_get_surface_from_frame (GstMsdkEnc * thiz,
GstVideoFrame src_frame, out_frame;
MsdkSurface *msdk_surface;
GstBuffer *inbuf;
#ifndef _WIN32
GstMemory *mem = NULL;
#endif
inbuf = frame->input_buffer;
if (gst_msdk_is_msdk_buffer (inbuf)) {

View file

@ -650,7 +650,9 @@ get_msdk_surface_from_input_buffer (GstMsdkVPP * thiz, GstBuffer * inbuf)
{
GstVideoFrame src_frame, out_frame;
MsdkSurface *msdk_surface;
#ifndef _WIN32
GstMemory *mem = NULL;
#endif
if (gst_msdk_is_msdk_buffer (inbuf)) {
msdk_surface = g_slice_new0 (MsdkSurface);