summaryrefslogtreecommitdiffstats
path: root/libavcodec/dxva2.c
diff options
context:
space:
mode:
authorwm4 <nfxjfg@googlemail.com>2017-06-22 14:52:53 +0200
committerLuca Barbato <lu_zero@gentoo.org>2017-06-27 00:23:12 +0200
commit752ddb45569ffe278393cd853b70f18ae017219e (patch)
tree0f161fc8d7d39d6c214af9ab461d52ef3185fa8a /libavcodec/dxva2.c
parent70e5e7c02232d1e51c362d5572c567a9e2a8dcc2 (diff)
downloadffmpeg-streaming-752ddb45569ffe278393cd853b70f18ae017219e.zip
ffmpeg-streaming-752ddb45569ffe278393cd853b70f18ae017219e.tar.gz
dxva: fix some warnings
Some existed since forever, some are new. The cast in get_surface() is silly, but unless we change the av_log function signature, or all callers of ff_dxva2_get_surface_index(), it's needed to remove the const warning. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavcodec/dxva2.c')
-rw-r--r--libavcodec/dxva2.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/libavcodec/dxva2.c b/libavcodec/dxva2.c
index 9f4a529..23d9668 100644
--- a/libavcodec/dxva2.c
+++ b/libavcodec/dxva2.c
@@ -359,7 +359,6 @@ static int d3d11va_get_decoder_configuration(AVCodecContext *avctx,
const D3D11_VIDEO_DECODER_DESC *desc,
D3D11_VIDEO_DECODER_CONFIG *config)
{
- FFDXVASharedContext *sctx = DXVA_SHARED_CONTEXT(avctx);
unsigned cfg_count = 0;
D3D11_VIDEO_DECODER_CONFIG *cfg_list = NULL;
HRESULT hr;
@@ -623,7 +622,6 @@ int ff_dxva2_decode_init(AVCodecContext *avctx)
if (sctx->pix_fmt == AV_PIX_FMT_D3D11) {
AVD3D11VADeviceContext *device_hwctx = frames_ctx->device_ctx->hwctx;
AVD3D11VAContext *d3d11_ctx = &sctx->ctx.d3d11va;
- HRESULT hr;
ff_dxva2_lock(avctx);
ret = d3d11va_create_decoder(avctx);
@@ -690,7 +688,7 @@ int ff_dxva2_decode_uninit(AVCodecContext *avctx)
return 0;
}
-static void *get_surface(AVCodecContext *avctx, const AVFrame *frame)
+static void *get_surface(const AVCodecContext *avctx, const AVFrame *frame)
{
#if CONFIG_D3D11VA
if (frame->format == AV_PIX_FMT_D3D11) {
@@ -698,7 +696,7 @@ static void *get_surface(AVCodecContext *avctx, const AVFrame *frame)
intptr_t index = (intptr_t)frame->data[1];
if (index < 0 || index >= sctx->nb_d3d11_views ||
sctx->d3d11_texture != (ID3D11Texture2D *)frame->data[0]) {
- av_log(avctx, AV_LOG_ERROR, "get_buffer frame is invalid!\n");
+ av_log((void *)avctx, AV_LOG_ERROR, "get_buffer frame is invalid!\n");
return NULL;
}
return sctx->d3d11_views[index];
@@ -759,7 +757,7 @@ int ff_dxva2_commit_buffer(AVCodecContext *avctx,
#endif
if (FAILED(hr)) {
av_log(avctx, AV_LOG_ERROR, "Failed to get a buffer for %u: 0x%x\n",
- type, hr);
+ type, (unsigned)hr);
return -1;
}
if (size <= dxva_size) {
@@ -801,7 +799,7 @@ int ff_dxva2_commit_buffer(AVCodecContext *avctx,
if (FAILED(hr)) {
av_log(avctx, AV_LOG_ERROR,
"Failed to release buffer type %u: 0x%x\n",
- type, hr);
+ type, (unsigned)hr);
result = -1;
}
return result;
@@ -871,7 +869,7 @@ int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
} while(1);
if (FAILED(hr)) {
- av_log(avctx, AV_LOG_ERROR, "Failed to begin frame: 0x%x\n", hr);
+ av_log(avctx, AV_LOG_ERROR, "Failed to begin frame: 0x%x\n", (unsigned)hr);
ff_dxva2_unlock(avctx);
return -1;
}
@@ -966,7 +964,7 @@ int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
}
#endif
if (FAILED(hr)) {
- av_log(avctx, AV_LOG_ERROR, "Failed to execute: 0x%x\n", hr);
+ av_log(avctx, AV_LOG_ERROR, "Failed to execute: 0x%x\n", (unsigned)hr);
result = -1;
}
@@ -981,7 +979,7 @@ end:
#endif
ff_dxva2_unlock(avctx);
if (FAILED(hr)) {
- av_log(avctx, AV_LOG_ERROR, "Failed to end frame: 0x%x\n", hr);
+ av_log(avctx, AV_LOG_ERROR, "Failed to end frame: 0x%x\n", (unsigned)hr);
result = -1;
}
OpenPOWER on IntegriCloud