Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
3ee5f25d
Commit
3ee5f25d
authored
Nov 24, 2016
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxva2: Adjust printf length modifiers where appropriate
parent
239d02ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
dxva2.c
libavcodec/dxva2.c
+5
-5
No files found.
libavcodec/dxva2.c
View file @
3ee5f25d
...
@@ -83,7 +83,7 @@ int ff_dxva2_commit_buffer(AVCodecContext *avctx,
...
@@ -83,7 +83,7 @@ int ff_dxva2_commit_buffer(AVCodecContext *avctx,
&
dxva_data
,
&
dxva_size
);
&
dxva_data
,
&
dxva_size
);
#endif
#endif
if
(
FAILED
(
hr
))
{
if
(
FAILED
(
hr
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to get a buffer for %u: 0x%
l
x
\n
"
,
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to get a buffer for %u: 0x%x
\n
"
,
type
,
hr
);
type
,
hr
);
return
-
1
;
return
-
1
;
}
}
...
@@ -125,7 +125,7 @@ int ff_dxva2_commit_buffer(AVCodecContext *avctx,
...
@@ -125,7 +125,7 @@ int ff_dxva2_commit_buffer(AVCodecContext *avctx,
#endif
#endif
if
(
FAILED
(
hr
))
{
if
(
FAILED
(
hr
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to release buffer type %u: 0x%
l
x
\n
"
,
"Failed to release buffer type %u: 0x%x
\n
"
,
type
,
hr
);
type
,
hr
);
result
=
-
1
;
result
=
-
1
;
}
}
...
@@ -179,7 +179,7 @@ int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
...
@@ -179,7 +179,7 @@ int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
}
while
(
1
);
}
while
(
1
);
if
(
FAILED
(
hr
))
{
if
(
FAILED
(
hr
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to begin frame: 0x%
l
x
\n
"
,
hr
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to begin frame: 0x%x
\n
"
,
hr
);
#if CONFIG_D3D11VA
#if CONFIG_D3D11VA
if
(
avctx
->
pix_fmt
==
AV_PIX_FMT_D3D11VA_VLD
)
if
(
avctx
->
pix_fmt
==
AV_PIX_FMT_D3D11VA_VLD
)
if
(
D3D11VA_CONTEXT
(
ctx
)
->
context_mutex
!=
INVALID_HANDLE_VALUE
)
if
(
D3D11VA_CONTEXT
(
ctx
)
->
context_mutex
!=
INVALID_HANDLE_VALUE
)
...
@@ -278,7 +278,7 @@ int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
...
@@ -278,7 +278,7 @@ int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
}
}
#endif
#endif
if
(
FAILED
(
hr
))
{
if
(
FAILED
(
hr
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to execute: 0x%
l
x
\n
"
,
hr
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to execute: 0x%x
\n
"
,
hr
);
result
=
-
1
;
result
=
-
1
;
}
}
...
@@ -295,7 +295,7 @@ end:
...
@@ -295,7 +295,7 @@ end:
hr
=
IDirectXVideoDecoder_EndFrame
(
DXVA2_CONTEXT
(
ctx
)
->
decoder
,
NULL
);
hr
=
IDirectXVideoDecoder_EndFrame
(
DXVA2_CONTEXT
(
ctx
)
->
decoder
,
NULL
);
#endif
#endif
if
(
FAILED
(
hr
))
{
if
(
FAILED
(
hr
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to end frame: 0x%
l
x
\n
"
,
hr
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to end frame: 0x%x
\n
"
,
hr
);
result
=
-
1
;
result
=
-
1
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment