d3d11: Don't use const pointer to GstDxgiColorSpace

Instead, fill values of passed GstDxgiColorSpace struct

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2697>
This commit is contained in:
Seungha Yang 2022-06-21 22:44:55 +09:00 committed by GStreamer Marge Bot
parent f19f579712
commit b2d09de899
6 changed files with 122 additions and 142 deletions

View file

@ -877,6 +877,7 @@ gst_d3d11_compositor_pad_setup_converter (GstVideoAggregatorPad * pad,
if (!cpad->convert) { if (!cpad->convert) {
GstD3D11Format in_format, out_format; GstD3D11Format in_format, out_format;
GstDxgiColorSpace in_space, out_space;
cpad->convert = gst_d3d11_converter_new (self->device, &pad->info, info); cpad->convert = gst_d3d11_converter_new (self->device, &pad->info, info);
if (!cpad->convert) { if (!cpad->convert) {
@ -904,14 +905,9 @@ gst_d3d11_compositor_pad_setup_converter (GstVideoAggregatorPad * pad,
in_format.dxgi_format != DXGI_FORMAT_UNKNOWN && in_format.dxgi_format != DXGI_FORMAT_UNKNOWN &&
gst_d3d11_device_get_format (self->device, gst_d3d11_device_get_format (self->device,
GST_VIDEO_INFO_FORMAT (info), &out_format) && GST_VIDEO_INFO_FORMAT (info), &out_format) &&
out_format.dxgi_format != DXGI_FORMAT_UNKNOWN) { out_format.dxgi_format != DXGI_FORMAT_UNKNOWN &&
const GstDxgiColorSpace *in_space; gst_d3d11_video_info_to_dxgi_color_space (&pad->info, &in_space) &&
const GstDxgiColorSpace *out_space; gst_d3d11_video_info_to_dxgi_color_space (info, &out_space)) {
in_space = gst_d3d11_video_info_to_dxgi_color_space (&pad->info);
out_space = gst_d3d11_video_info_to_dxgi_color_space (info);
if (in_space && out_space) {
GstD3D11VideoProcessor *processor = GstD3D11VideoProcessor *processor =
gst_d3d11_video_processor_new (self->device, gst_d3d11_video_processor_new (self->device,
pad->info.width, pad->info.height, info->width, pad->info.width, pad->info.height, info->width,
@ -920,13 +916,13 @@ gst_d3d11_compositor_pad_setup_converter (GstVideoAggregatorPad * pad,
if (processor) { if (processor) {
if (gst_d3d11_video_processor_check_format_conversion (processor, if (gst_d3d11_video_processor_check_format_conversion (processor,
in_format.dxgi_format, in_format.dxgi_format,
(DXGI_COLOR_SPACE_TYPE) in_space->dxgi_color_space_type, (DXGI_COLOR_SPACE_TYPE) in_space.dxgi_color_space_type,
in_format.dxgi_format, in_format.dxgi_format,
(DXGI_COLOR_SPACE_TYPE) out_space->dxgi_color_space_type) && (DXGI_COLOR_SPACE_TYPE) out_space.dxgi_color_space_type) &&
gst_d3d11_video_processor_set_input_dxgi_color_space (processor, gst_d3d11_video_processor_set_input_dxgi_color_space (processor,
(DXGI_COLOR_SPACE_TYPE) in_space->dxgi_color_space_type) && (DXGI_COLOR_SPACE_TYPE) in_space.dxgi_color_space_type) &&
gst_d3d11_video_processor_set_output_dxgi_color_space (processor, gst_d3d11_video_processor_set_output_dxgi_color_space (processor,
(DXGI_COLOR_SPACE_TYPE) out_space->dxgi_color_space_type)) { (DXGI_COLOR_SPACE_TYPE) out_space.dxgi_color_space_type)) {
cpad->processor = processor; cpad->processor = processor;
GST_DEBUG_OBJECT (pad, "Video processor is available"); GST_DEBUG_OBJECT (pad, "Video processor is available");
} else { } else {
@ -935,7 +931,6 @@ gst_d3d11_compositor_pad_setup_converter (GstVideoAggregatorPad * pad,
} }
} }
} }
}
if (cpad->alpha_updated) { if (cpad->alpha_updated) {
if (output_has_alpha_comp) { if (output_has_alpha_comp) {

View file

@ -1816,19 +1816,16 @@ gst_d3d11_base_convert_set_info (GstD3D11BaseFilter * filter,
} }
if (processor) { if (processor) {
const GstDxgiColorSpace *in_color_space; GstDxgiColorSpace in_space, out_space;
const GstDxgiColorSpace *out_color_space;
in_color_space = gst_d3d11_video_info_to_dxgi_color_space (in_info); if (gst_d3d11_video_info_to_dxgi_color_space (in_info, &in_space) &&
out_color_space = gst_d3d11_video_info_to_dxgi_color_space (out_info); gst_d3d11_video_info_to_dxgi_color_space (out_info, &out_space)) {
if (in_color_space && out_color_space) {
DXGI_FORMAT in_dxgi_format = self->in_d3d11_format.dxgi_format; DXGI_FORMAT in_dxgi_format = self->in_d3d11_format.dxgi_format;
DXGI_FORMAT out_dxgi_format = self->out_d3d11_format.dxgi_format; DXGI_FORMAT out_dxgi_format = self->out_d3d11_format.dxgi_format;
DXGI_COLOR_SPACE_TYPE in_dxgi_color_space = DXGI_COLOR_SPACE_TYPE in_dxgi_color_space =
(DXGI_COLOR_SPACE_TYPE) in_color_space->dxgi_color_space_type; (DXGI_COLOR_SPACE_TYPE) in_space.dxgi_color_space_type;
DXGI_COLOR_SPACE_TYPE out_dxgi_color_space = DXGI_COLOR_SPACE_TYPE out_dxgi_color_space =
(DXGI_COLOR_SPACE_TYPE) out_color_space->dxgi_color_space_type; (DXGI_COLOR_SPACE_TYPE) out_space.dxgi_color_space_type;
if (!gst_d3d11_video_processor_check_format_conversion (processor, if (!gst_d3d11_video_processor_check_format_conversion (processor,
in_dxgi_format, in_dxgi_color_space, out_dxgi_format, in_dxgi_format, in_dxgi_color_space, out_dxgi_format,

View file

@ -428,11 +428,11 @@ static const GstDxgiColorSpace yuv_colorspace_map[] = {
#define SCORE_PRIMARY_MISMATCH 10 #define SCORE_PRIMARY_MISMATCH 10
static gint static gint
get_score (GstVideoInfo * info, const GstDxgiColorSpace * color_map, get_score (const GstVideoInfo * info, const GstDxgiColorSpace * color_map,
gboolean is_yuv) gboolean is_yuv)
{ {
gint loss = 0; gint loss = 0;
GstVideoColorimetry *color = &info->colorimetry; const GstVideoColorimetry *color = &info->colorimetry;
if (color->range != color_map->range) if (color->range != color_map->range)
loss += SCORE_RANGE_MISMATCH; loss += SCORE_RANGE_MISMATCH;
@ -449,84 +449,91 @@ get_score (GstVideoInfo * info, const GstDxgiColorSpace * color_map,
return loss; return loss;
} }
static const GstDxgiColorSpace * static gboolean
gst_d3d11_video_info_to_dxgi_color_space_rgb (GstVideoInfo * info) gst_d3d11_video_info_to_dxgi_color_space_rgb (const GstVideoInfo * info,
GstDxgiColorSpace * color_space)
{ {
gint best_score = G_MAXINT; gint best_score = G_MAXINT;
gint score; gint score;
guint i; guint i;
const GstDxgiColorSpace *colorspace = NULL; const GstDxgiColorSpace *best = nullptr;
for (i = 0; i < G_N_ELEMENTS (rgb_colorspace_map); i++) { for (i = 0; i < G_N_ELEMENTS (rgb_colorspace_map); i++) {
score = get_score (info, &rgb_colorspace_map[i], FALSE); score = get_score (info, &rgb_colorspace_map[i], FALSE);
if (score < best_score) { if (score < best_score) {
best_score = score; best_score = score;
colorspace = &rgb_colorspace_map[i]; best = &rgb_colorspace_map[i];
if (score == 0) if (score == 0) {
break; *color_space = rgb_colorspace_map[i];
return TRUE;
}
} }
} }
return colorspace; if (best) {
*color_space = *best;
return TRUE;
}
return FALSE;
} }
static const GstDxgiColorSpace * static gboolean
gst_d3d11_video_info_to_dxgi_color_space_yuv (GstVideoInfo * info) gst_d3d11_video_info_to_dxgi_color_space_yuv (const GstVideoInfo * info,
GstDxgiColorSpace * color_space)
{ {
gint best_score = G_MAXINT; gint best_score = G_MAXINT;
gint score; gint score;
guint i; guint i;
const GstDxgiColorSpace *colorspace = NULL; const GstDxgiColorSpace *best = nullptr;
for (i = 0; i < G_N_ELEMENTS (yuv_colorspace_map); i++) { for (i = 0; i < G_N_ELEMENTS (yuv_colorspace_map); i++) {
score = get_score (info, &yuv_colorspace_map[i], TRUE); score = get_score (info, &yuv_colorspace_map[i], TRUE);
if (score < best_score) { if (score < best_score) {
best_score = score; best_score = score;
colorspace = &yuv_colorspace_map[i]; best = &yuv_colorspace_map[i];
if (score == 0) if (score == 0) {
break; *color_space = rgb_colorspace_map[i];
return TRUE;
}
} }
} }
return colorspace; if (best) {
*color_space = *best;
return TRUE;
}
return FALSE;
} }
const GstDxgiColorSpace * gboolean
gst_d3d11_video_info_to_dxgi_color_space (GstVideoInfo * info) gst_d3d11_video_info_to_dxgi_color_space (const GstVideoInfo * info,
GstDxgiColorSpace * color_space)
{ {
g_return_val_if_fail (info != NULL, NULL); g_return_val_if_fail (info != nullptr, FALSE);
g_return_val_if_fail (color_space != nullptr, FALSE);
if (GST_VIDEO_INFO_IS_RGB (info)) { if (GST_VIDEO_INFO_IS_RGB (info))
return gst_d3d11_video_info_to_dxgi_color_space_rgb (info); return gst_d3d11_video_info_to_dxgi_color_space_rgb (info, color_space);
} else if (GST_VIDEO_INFO_IS_YUV (info)) {
return gst_d3d11_video_info_to_dxgi_color_space_yuv (info);
}
return NULL; return gst_d3d11_video_info_to_dxgi_color_space_yuv (info, color_space);
} }
const GstDxgiColorSpace * gboolean
gst_d3d11_find_swap_chain_color_space (GstVideoInfo * info, gst_d3d11_find_swap_chain_color_space (const GstVideoInfo * info,
IDXGISwapChain3 * swapchain) IDXGISwapChain3 * swapchain, GstDxgiColorSpace * color_space)
{ {
const GstDxgiColorSpace *colorspace = NULL;
gint best_score = G_MAXINT;
guint i;
UINT can_support = 0; UINT can_support = 0;
HRESULT hr; HRESULT hr;
GST_DXGI_COLOR_SPACE_TYPE cur_type;
/* list of tested display color spaces */
static GST_DXGI_COLOR_SPACE_TYPE whitelist[] = {
GST_DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709,
GST_DXGI_COLOR_SPACE_RGB_FULL_G10_NONE_P709,
};
g_return_val_if_fail (info != NULL, FALSE); g_return_val_if_fail (info != NULL, FALSE);
g_return_val_if_fail (swapchain != NULL, FALSE); g_return_val_if_fail (swapchain != NULL, FALSE);
g_return_val_if_fail (color_space != NULL, FALSE);
if (!GST_VIDEO_INFO_IS_RGB (info)) { if (!GST_VIDEO_INFO_IS_RGB (info)) {
GST_WARNING ("Swapchain colorspace should be RGB format"); GST_WARNING ("Swapchain colorspace should be RGB format");
@ -540,51 +547,30 @@ gst_d3d11_find_swap_chain_color_space (GstVideoInfo * info,
hr = swapchain->CheckColorSpaceSupport ((DXGI_COLOR_SPACE_TYPE) pq, hr = swapchain->CheckColorSpaceSupport ((DXGI_COLOR_SPACE_TYPE) pq,
&can_support); &can_support);
if (SUCCEEDED (hr) && can_support) { if (SUCCEEDED (hr) && can_support) {
for (i = 0; i < G_N_ELEMENTS (rgb_colorspace_map); i++) { color_space->dxgi_color_space_type = pq;
if (rgb_colorspace_map[i].dxgi_color_space_type == pq) color_space->range = GST_VIDEO_COLOR_RANGE_0_255;
return &rgb_colorspace_map[i]; color_space->matrix = GST_VIDEO_COLOR_MATRIX_RGB;
} color_space->transfer = GST_VIDEO_TRANSFER_SMPTE2084;
} color_space->primaries = GST_VIDEO_COLOR_PRIMARIES_BT2020;
} return TRUE;
for (i = 0; i < G_N_ELEMENTS (rgb_colorspace_map); i++) {
can_support = 0;
gint score;
gboolean valid = FALSE;
cur_type =
(GST_DXGI_COLOR_SPACE_TYPE) rgb_colorspace_map[i].dxgi_color_space_type;
for (guint j = 0; j < G_N_ELEMENTS (whitelist); j++) {
if (whitelist[j] == cur_type) {
valid = TRUE;
break;
} }
} }
if (!valid) /* otherwise use standard sRGB color space */
continue; hr = swapchain->CheckColorSpaceSupport (
(DXGI_COLOR_SPACE_TYPE) GST_DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709,
hr = swapchain->CheckColorSpaceSupport ((DXGI_COLOR_SPACE_TYPE) cur_type,
&can_support); &can_support);
if (SUCCEEDED (hr) && can_support) {
if (FAILED (hr)) color_space->dxgi_color_space_type =
continue; GST_DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709;
color_space->range = GST_VIDEO_COLOR_RANGE_0_255;
if ((can_support & DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG_PRESENT) == color_space->matrix = GST_VIDEO_COLOR_MATRIX_RGB;
DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG_PRESENT) { color_space->transfer = GST_VIDEO_TRANSFER_BT709;
score = get_score (info, &rgb_colorspace_map[i], FALSE); color_space->primaries = GST_VIDEO_COLOR_PRIMARIES_BT709;
return TRUE;
GST_DEBUG ("colorspace %d supported, score %d", cur_type, score);
if (score < best_score) {
best_score = score;
colorspace = &rgb_colorspace_map[i];
}
}
} }
return colorspace; return FALSE;
} }
static void static void

View file

@ -75,10 +75,12 @@ gboolean gst_d3d11_hdr_meta_data_to_dxgi (GstVideoMasteringDisplayInf
GstVideoContentLightLevel * cll, GstVideoContentLightLevel * cll,
DXGI_HDR_METADATA_HDR10 * dxgi_hdr10); DXGI_HDR_METADATA_HDR10 * dxgi_hdr10);
const GstDxgiColorSpace * gst_d3d11_video_info_to_dxgi_color_space (GstVideoInfo * info); gboolean gst_d3d11_video_info_to_dxgi_color_space (const GstVideoInfo * info,
GstDxgiColorSpace * color_space);
const GstDxgiColorSpace * gst_d3d11_find_swap_chain_color_space (GstVideoInfo * info, gboolean gst_d3d11_find_swap_chain_color_space (const GstVideoInfo * info,
IDXGISwapChain3 * swapchain); IDXGISwapChain3 * swapchain,
GstDxgiColorSpace * color_space);
GstBuffer * gst_d3d11_allocate_staging_buffer_for (GstBuffer * buffer, GstBuffer * gst_d3d11_allocate_staging_buffer_for (GstBuffer * buffer,
const GstVideoInfo * info, const GstVideoInfo * info,

View file

@ -450,11 +450,13 @@ gst_d3d11_window_prepare_default (GstD3D11Window * window, guint display_width,
{DXGI_FORMAT_R10G10B10A2_UNORM, GST_VIDEO_FORMAT_RGB10A2_LE, FALSE}, {DXGI_FORMAT_R10G10B10A2_UNORM, GST_VIDEO_FORMAT_RGB10A2_LE, FALSE},
}; };
const GstD3D11WindowDisplayFormat *chosen_format = NULL; const GstD3D11WindowDisplayFormat *chosen_format = NULL;
const GstDxgiColorSpace *chosen_colorspace = NULL; GstDxgiColorSpace swapchain_colorspace;
gboolean found_swapchain_colorspace = FALSE;
gboolean have_hdr10 = FALSE; gboolean have_hdr10 = FALSE;
DXGI_COLOR_SPACE_TYPE native_colorspace_type = DXGI_COLOR_SPACE_TYPE native_colorspace_type =
DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709; DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709;
DXGI_HDR_METADATA_HDR10 hdr10_metadata = { 0, }; DXGI_HDR_METADATA_HDR10 hdr10_metadata = { 0, };
GstDxgiColorSpace in_dxgi_colorspace;
/* Step 1: Clear old resources and objects */ /* Step 1: Clear old resources and objects */
gst_clear_buffer (&window->cached_buffer); gst_clear_buffer (&window->cached_buffer);
@ -625,17 +627,17 @@ gst_d3d11_window_prepare_default (GstD3D11Window * window, guint display_width,
hr = window->swap_chain->QueryInterface (IID_PPV_ARGS (&swapchain3)); hr = window->swap_chain->QueryInterface (IID_PPV_ARGS (&swapchain3));
if (gst_d3d11_result (hr, window->device)) { if (gst_d3d11_result (hr, window->device)) {
chosen_colorspace = found_swapchain_colorspace =
gst_d3d11_find_swap_chain_color_space (&window->render_info, gst_d3d11_find_swap_chain_color_space (&window->render_info,
swapchain3.Get ()); swapchain3.Get (), &swapchain_colorspace);
if (chosen_colorspace) { if (found_swapchain_colorspace) {
native_colorspace_type = native_colorspace_type =
(DXGI_COLOR_SPACE_TYPE) chosen_colorspace->dxgi_color_space_type; (DXGI_COLOR_SPACE_TYPE) swapchain_colorspace.dxgi_color_space_type;
hr = swapchain3->SetColorSpace1 (native_colorspace_type); hr = swapchain3->SetColorSpace1 (native_colorspace_type);
if (!gst_d3d11_result (hr, window->device)) { if (!gst_d3d11_result (hr, window->device)) {
GST_WARNING_OBJECT (window, "Failed to set colorspace %d, hr: 0x%x", GST_WARNING_OBJECT (window, "Failed to set colorspace %d, hr: 0x%x",
native_colorspace_type, (guint) hr); native_colorspace_type, (guint) hr);
chosen_colorspace = NULL; found_swapchain_colorspace = FALSE;
native_colorspace_type = DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709; native_colorspace_type = DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709;
} else { } else {
GST_DEBUG_OBJECT (window, GST_DEBUG_OBJECT (window,
@ -643,11 +645,11 @@ gst_d3d11_window_prepare_default (GstD3D11Window * window, guint display_width,
/* update with selected display color space */ /* update with selected display color space */
window->render_info.colorimetry.primaries = window->render_info.colorimetry.primaries =
chosen_colorspace->primaries; swapchain_colorspace.primaries;
window->render_info.colorimetry.transfer = window->render_info.colorimetry.transfer =
chosen_colorspace->transfer; swapchain_colorspace.transfer;
window->render_info.colorimetry.range = chosen_colorspace->range; window->render_info.colorimetry.range = swapchain_colorspace.range;
window->render_info.colorimetry.matrix = chosen_colorspace->matrix; window->render_info.colorimetry.matrix = swapchain_colorspace.matrix;
} }
} }
} }
@ -655,16 +657,14 @@ gst_d3d11_window_prepare_default (GstD3D11Window * window, guint display_width,
/* otherwise, use most common DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709 /* otherwise, use most common DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709
* color space */ * color space */
if (!chosen_colorspace) { if (!found_swapchain_colorspace) {
GST_DEBUG_OBJECT (window, "No selected render color space, use BT709"); GST_DEBUG_OBJECT (window, "No selected render color space, use BT709");
window->render_info.colorimetry.primaries = GST_VIDEO_COLOR_PRIMARIES_BT709; window->render_info.colorimetry.primaries = GST_VIDEO_COLOR_PRIMARIES_BT709;
window->render_info.colorimetry.transfer = GST_VIDEO_TRANSFER_BT709; window->render_info.colorimetry.transfer = GST_VIDEO_TRANSFER_BT709;
window->render_info.colorimetry.range = GST_VIDEO_COLOR_RANGE_0_255; window->render_info.colorimetry.range = GST_VIDEO_COLOR_RANGE_0_255;
} window->render_info.colorimetry.matrix = GST_VIDEO_COLOR_MATRIX_RGB;
} else if (gst_d3d11_video_info_to_dxgi_color_space (&window->info,
if (chosen_colorspace) { &in_dxgi_colorspace)) {
const GstDxgiColorSpace *in_color_space =
gst_d3d11_video_info_to_dxgi_color_space (&window->info);
GstD3D11Format in_format; GstD3D11Format in_format;
gboolean hardware = FALSE; gboolean hardware = FALSE;
GstD3D11VideoProcessor *processor = NULL; GstD3D11VideoProcessor *processor = NULL;
@ -674,7 +674,7 @@ gst_d3d11_window_prepare_default (GstD3D11Window * window, guint display_width,
GST_VIDEO_INFO_FORMAT (&window->info), &in_format); GST_VIDEO_INFO_FORMAT (&window->info), &in_format);
in_dxgi_format = in_format.dxgi_format; in_dxgi_format = in_format.dxgi_format;
if (in_color_space && in_format.dxgi_format != DXGI_FORMAT_UNKNOWN) { if (in_format.dxgi_format != DXGI_FORMAT_UNKNOWN) {
g_object_get (window->device, "hardware", &hardware, NULL); g_object_get (window->device, "hardware", &hardware, NULL);
} }
@ -688,7 +688,7 @@ gst_d3d11_window_prepare_default (GstD3D11Window * window, guint display_width,
if (processor) { if (processor) {
DXGI_FORMAT out_dxgi_format = chosen_format->dxgi_format; DXGI_FORMAT out_dxgi_format = chosen_format->dxgi_format;
DXGI_COLOR_SPACE_TYPE in_dxgi_color_space = DXGI_COLOR_SPACE_TYPE in_dxgi_color_space =
(DXGI_COLOR_SPACE_TYPE) in_color_space->dxgi_color_space_type; (DXGI_COLOR_SPACE_TYPE) in_dxgi_colorspace.dxgi_color_space_type;
DXGI_COLOR_SPACE_TYPE out_dxgi_color_space = native_colorspace_type; DXGI_COLOR_SPACE_TYPE out_dxgi_color_space = native_colorspace_type;
if (!gst_d3d11_video_processor_check_format_conversion (processor, if (!gst_d3d11_video_processor_check_format_conversion (processor,

View file

@ -85,6 +85,8 @@ gst_d3d11_window_dummy_prepare (GstD3D11Window * window,
guint display_width, guint display_height, GstCaps * caps, guint display_width, guint display_height, GstCaps * caps,
gboolean * video_processor_available, GError ** error) gboolean * video_processor_available, GError ** error)
{ {
GstDxgiColorSpace in_space;
g_clear_pointer (&window->processor, gst_d3d11_video_processor_free); g_clear_pointer (&window->processor, gst_d3d11_video_processor_free);
g_clear_pointer (&window->compositor, gst_d3d11_overlay_compositor_free); g_clear_pointer (&window->compositor, gst_d3d11_overlay_compositor_free);
gst_clear_object (&window->converter); gst_clear_object (&window->converter);
@ -114,9 +116,7 @@ gst_d3d11_window_dummy_prepare (GstD3D11Window * window,
gst_d3d11_device_lock (window->device); gst_d3d11_device_lock (window->device);
{ if (gst_d3d11_video_info_to_dxgi_color_space (&window->info, &in_space)) {
const GstDxgiColorSpace *in_color_space =
gst_d3d11_video_info_to_dxgi_color_space (&window->info);
GstD3D11Format in_format; GstD3D11Format in_format;
gboolean hardware = FALSE; gboolean hardware = FALSE;
GstD3D11VideoProcessor *processor = NULL; GstD3D11VideoProcessor *processor = NULL;
@ -132,7 +132,7 @@ gst_d3d11_window_dummy_prepare (GstD3D11Window * window,
GST_VIDEO_INFO_FORMAT (&window->info), &in_format); GST_VIDEO_INFO_FORMAT (&window->info), &in_format);
in_dxgi_format = in_format.dxgi_format; in_dxgi_format = in_format.dxgi_format;
if (in_color_space && in_format.dxgi_format != DXGI_FORMAT_UNKNOWN) { if (in_format.dxgi_format != DXGI_FORMAT_UNKNOWN) {
g_object_get (window->device, "hardware", &hardware, NULL); g_object_get (window->device, "hardware", &hardware, NULL);
} }
@ -147,7 +147,7 @@ gst_d3d11_window_dummy_prepare (GstD3D11Window * window,
for (i = 0; i < G_N_ELEMENTS (formats_to_check) && processor; i++) { for (i = 0; i < G_N_ELEMENTS (formats_to_check) && processor; i++) {
DXGI_FORMAT out_dxgi_format = formats_to_check[i]; DXGI_FORMAT out_dxgi_format = formats_to_check[i];
DXGI_COLOR_SPACE_TYPE in_dxgi_color_space = DXGI_COLOR_SPACE_TYPE in_dxgi_color_space =
(DXGI_COLOR_SPACE_TYPE) in_color_space->dxgi_color_space_type; (DXGI_COLOR_SPACE_TYPE) in_space.dxgi_color_space_type;
if (!gst_d3d11_video_processor_check_format_conversion (processor, if (!gst_d3d11_video_processor_check_format_conversion (processor,
in_dxgi_format, in_dxgi_color_space, out_dxgi_format, in_dxgi_format, in_dxgi_color_space, out_dxgi_format,
@ -160,7 +160,7 @@ gst_d3d11_window_dummy_prepare (GstD3D11Window * window,
if (processor) { if (processor) {
gst_d3d11_video_processor_set_input_dxgi_color_space (processor, gst_d3d11_video_processor_set_input_dxgi_color_space (processor,
(DXGI_COLOR_SPACE_TYPE) in_color_space->dxgi_color_space_type); (DXGI_COLOR_SPACE_TYPE) in_space.dxgi_color_space_type);
gst_d3d11_video_processor_set_output_dxgi_color_space (processor, gst_d3d11_video_processor_set_output_dxgi_color_space (processor,
DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709); DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709);
} }