mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
msdk: Fix warning about unused variable on Windows
This commit is contained in:
parent
c0d778c2c7
commit
e83d5fd8d6
2 changed files with 4 additions and 0 deletions
|
@ -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)) {
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue