summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorSeungha Yang <seungha@centricular.com>2021-03-02 20:37:04 +0900
committerSeungha Yang <seungha@centricular.com>2021-03-02 23:10:46 +0900
commita4c613047721bc15622057e6822487ce187986a4 (patch)
tree06ee949ca2184b5cfd2636bc54f5ac255fc01473 /gst-libs
parentf7eb93e22b1db5912fbe09ad4c52cc42a35260e8 (diff)
downloadgstreamer-plugins-bad-a4c613047721bc15622057e6822487ce187986a4.tar.gz
d3d11: Fix wrong preprocessing blocks
Missed in https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/464 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2051>
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/d3d11/gstd3d11_fwd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gst-libs/gst/d3d11/gstd3d11_fwd.h b/gst-libs/gst/d3d11/gstd3d11_fwd.h
index 7524c34b9..624cc156e 100644
--- a/gst-libs/gst/d3d11/gstd3d11_fwd.h
+++ b/gst-libs/gst/d3d11/gstd3d11_fwd.h
@@ -41,15 +41,15 @@
#include <d3d11.h>
#endif
-#if (GST_D3D11_DXGI_H_VERSION >= 6)
+#if (GST_D3D11_DXGI_HEADER_VERSION >= 6)
#include <dxgi1_6.h>
-#elif (GST_D3D11_DXGI_H_VERSION >= 5)
+#elif (GST_D3D11_DXGI_HEADER_VERSION >= 5)
#include <dxgi1_5.h>
-#elif (GST_D3D11_DXGI_H_VERSION >= 4)
+#elif (GST_D3D11_DXGI_HEADER_VERSION >= 4)
#include <dxgi1_4.h>
-#elif (GST_D3D11_DXGI_H_VERSION >= 3)
+#elif (GST_D3D11_DXGI_HEADER_VERSION >= 3)
#include <dxgi1_3.h>
-#elif (GST_D3D11_DXGI_H_VERSION >= 2)
+#elif (GST_D3D11_DXGI_HEADER_VERSION >= 2)
#include <dxgi1_2.h>
#else
#include <dxgi.h>