Home
last modified time | relevance | path

Searched refs:d3d11_format (Results 1 – 8 of 8) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/mediafoundation/
Dplugin.c118 const GstD3D11Format *d3d11_format; in get_d3d11_devices() local
137 d3d11_format = in get_d3d11_devices()
139 if (!d3d11_format || d3d11_format->dxgi_format != DXGI_FORMAT_NV12) { in get_d3d11_devices()
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11upload.cpp367 const GstD3D11Format *d3d11_format; in gst_d3d11_upload_decide_allocation() local
383 d3d11_format = gst_d3d11_device_format_from_gst (filter->device, in gst_d3d11_upload_decide_allocation()
385 if (!d3d11_format) { in gst_d3d11_upload_decide_allocation()
390 if (d3d11_format->dxgi_format == DXGI_FORMAT_UNKNOWN) { in gst_d3d11_upload_decide_allocation()
391 dxgi_format = d3d11_format->resource_format[0]; in gst_d3d11_upload_decide_allocation()
393 dxgi_format = d3d11_format->dxgi_format; in gst_d3d11_upload_decide_allocation()
Dgstd3d11convert.cpp1171 const GstD3D11Format *d3d11_format; in gst_d3d11_base_convert_propose_allocation() local
1196 d3d11_format = gst_d3d11_device_format_from_gst (filter->device, in gst_d3d11_base_convert_propose_allocation()
1198 if (!d3d11_format) { in gst_d3d11_base_convert_propose_allocation()
1203 if (d3d11_format->dxgi_format == DXGI_FORMAT_UNKNOWN) { in gst_d3d11_base_convert_propose_allocation()
1204 dxgi_format = d3d11_format->resource_format[0]; in gst_d3d11_base_convert_propose_allocation()
1206 dxgi_format = d3d11_format->dxgi_format; in gst_d3d11_base_convert_propose_allocation()
1295 const GstD3D11Format *d3d11_format; in gst_d3d11_base_convert_decide_allocation() local
1312 d3d11_format = gst_d3d11_device_format_from_gst (filter->device, in gst_d3d11_base_convert_decide_allocation()
1314 if (!d3d11_format) { in gst_d3d11_base_convert_decide_allocation()
1319 if (d3d11_format->dxgi_format == DXGI_FORMAT_UNKNOWN) { in gst_d3d11_base_convert_decide_allocation()
[all …]
Dgstd3d11decoder.cpp715 const GstD3D11Format *d3d11_format; in gst_d3d11_decoder_configure() local
726 d3d11_format = gst_d3d11_device_format_from_gst (decoder->device, in gst_d3d11_decoder_configure()
728 if (!d3d11_format || d3d11_format->dxgi_format == DXGI_FORMAT_UNKNOWN) { in gst_d3d11_decoder_configure()
739 decoder->decoder_format = d3d11_format->dxgi_format; in gst_d3d11_decoder_configure()
Dgstd3d11converter.cpp720 const GstD3D11Format *d3d11_format = in get_packed_yuv_components() local
724 g_assert (d3d11_format != NULL); in get_packed_yuv_components()
726 if (d3d11_format->resource_format[0] == DXGI_FORMAT_R8G8B8A8_UNORM) { in get_packed_yuv_components()
730 } else if (d3d11_format->resource_format[0] == in get_packed_yuv_components()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/d3d11/
Dgstd3d11memory.cpp64 const GstD3D11Format *d3d11_format; in gst_d3d11_allocation_params_new() local
69 d3d11_format = gst_d3d11_device_format_from_gst (device, in gst_d3d11_allocation_params_new()
71 if (!d3d11_format) { in gst_d3d11_allocation_params_new()
80 ret->d3d11_format = d3d11_format; in gst_d3d11_allocation_params_new()
96 if (d3d11_format->dxgi_format == DXGI_FORMAT_UNKNOWN) { in gst_d3d11_allocation_params_new()
98 g_assert (d3d11_format->resource_format[i] != DXGI_FORMAT_UNKNOWN); in gst_d3d11_allocation_params_new()
104 ret->desc[i].Format = d3d11_format->resource_format[i]; in gst_d3d11_allocation_params_new()
115 ret->desc[0].Format = d3d11_format->dxgi_format; in gst_d3d11_allocation_params_new()
Dgstd3d11bufferpool.cpp301 g_assert (priv->d3d11_params->d3d11_format != NULL); in gst_d3d11_buffer_pool_set_config()
302 format = priv->d3d11_params->d3d11_format; in gst_d3d11_buffer_pool_set_config()
Dgstd3d11memory.h116 const GstD3D11Format *d3d11_format; member