Commit 172b2cee authored by Martin Storsjö's avatar Martin Storsjö

dxva2: Add ifdefs around structs that might not be available

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 28fa58cf
...@@ -132,8 +132,12 @@ int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame, ...@@ -132,8 +132,12 @@ int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
{ {
AVDXVAContext *ctx = avctx->hwaccel_context; AVDXVAContext *ctx = avctx->hwaccel_context;
unsigned buffer_count = 0; unsigned buffer_count = 0;
#if CONFIG_D3D11VA
D3D11_VIDEO_DECODER_BUFFER_DESC buffer11[4]; D3D11_VIDEO_DECODER_BUFFER_DESC buffer11[4];
#endif
#if CONFIG_DXVA2
DXVA2_DecodeBufferDesc buffer2[4]; DXVA2_DecodeBufferDesc buffer2[4];
#endif
DECODER_BUFFER_DESC *buffer,*buffer_slice; DECODER_BUFFER_DESC *buffer,*buffer_slice;
int result, runs = 0; int result, runs = 0;
HRESULT hr; HRESULT hr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment