From: Seungha Yang Date: Mon, 7 Feb 2022 13:38:02 +0000 (+0900) Subject: d3d11stagingbufferpool: Fix typo in texture description X-Git-Tag: 1.22.0~2514 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=187dfce793eb75e98e2bae44b3b12b7ac8c8ace7;p=platform%2Fupstream%2Fgstreamer.git d3d11stagingbufferpool: Fix typo in texture description Fixing typo, it should be height Part-of: --- diff --git a/subprojects/gst-plugins-bad/gst-libs/gst/d3d11/gstd3d11stagingbufferpool.cpp b/subprojects/gst-plugins-bad/gst-libs/gst/d3d11/gstd3d11stagingbufferpool.cpp index b01ccbb..40912f9 100644 --- a/subprojects/gst-plugins-bad/gst-libs/gst/d3d11/gstd3d11stagingbufferpool.cpp +++ b/subprojects/gst-plugins-bad/gst-libs/gst/d3d11/gstd3d11stagingbufferpool.cpp @@ -172,7 +172,7 @@ gst_d3d11_staging_buffer_pool_set_config (GstBufferPool * pool, desc = &priv->desc[0]; width = GST_VIDEO_INFO_WIDTH (&info); - height = GST_VIDEO_INFO_WIDTH (&info); + height = GST_VIDEO_INFO_HEIGHT (&info); /* resolution of semi-planar formats must be multiple of 2 */ switch (format->dxgi_format) {