d3d11: Fix wrong GstD3D11BufferPool type check
authorSeungha Yang <seungha@centricular.com>
Fri, 23 Apr 2021 07:53:16 +0000 (16:53 +0900)
committerSeungha Yang <seungha@centricular.com>
Fri, 23 Apr 2021 07:54:15 +0000 (16:54 +0900)
Fix typos

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2190>

sys/d3d11/gstd3d11compositor.cpp
sys/d3d11/gstd3d11decoder.cpp

index affe237..a187b39 100644 (file)
@@ -1844,7 +1844,7 @@ gst_d3d11_compositor_decide_allocation (GstAggregator * aggregator,
     gst_query_parse_nth_allocation_pool (query, 0, &pool, &size, &min, &max);
 
   /* create our own pool */
-  if (pool && !GST_D3D11_BUFFER_POOL (pool)) {
+  if (pool && !GST_IS_D3D11_BUFFER_POOL (pool)) {
     gst_object_unref (pool);
     pool = NULL;
   }
index 636c71c..433fdff 100644 (file)
@@ -1556,7 +1556,7 @@ gst_d3d11_decoder_decide_allocation (GstD3D11Decoder * decoder,
 
   /* create our own pool */
   if (pool && use_d3d11_pool) {
-    if (!GST_D3D11_BUFFER_POOL (pool)) {
+    if (!GST_IS_D3D11_BUFFER_POOL (pool)) {
       GST_DEBUG_OBJECT (videodec,
           "Downstream pool is not d3d11, will create new one");
       gst_clear_object (&pool);