codec: videotoolbox: check if H264 needs restart
[vlc.git] / contrib / src / d3d11 / processor_format.patch
blobce7bcfd010a55f31d333ab557c83b18a817c0751
1 --- a/d3d11.idl 2016-02-26 09:21:48.019575300 +0100
2 +++ b/d3d11.idl 2016-02-26 10:41:58.461027900 +0100
3 @@ -3199,6 +3199,18 @@ typedef enum D3D11_CREATE_DEVICE_FLAG {
4 D3D11_CREATE_DEVICE_VIDEO_SUPPORT = 0x0800
5 } D3D11_CREATE_DEVICE_FLAG;
7 +typedef enum D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT
8 +{
9 + D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_INPUT = 0x00000001,
10 + D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_OUTPUT = 0x00000002,
11 +} D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT;
13 +typedef struct D3D11_FEATURE_DATA_THREADING
15 + BOOL DriverConcurrentCreates;
16 + BOOL DriverCommandLists;
17 +} D3D11_FEATURE_DATA_THREADING;
19 const UINT D3D11_SDK_VERSION = 7;
21 cpp_quote("#include <d3d10_1.h>")