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
ade4ecb4
Commit
ade4ecb4
authored
Jan 21, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxva2: Use correct printf format strings
parent
766df7ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
dxva2.c
libavcodec/dxva2.c
+6
-6
No files found.
libavcodec/dxva2.c
View file @
ade4ecb4
...
...
@@ -63,7 +63,7 @@ int ff_dxva2_commit_buffer(AVCodecContext *avctx,
hr
=
IDirectXVideoDecoder_GetBuffer
(
ctx
->
decoder
,
type
,
&
dxva_data
,
&
dxva_size
);
if
(
FAILED
(
hr
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to get a buffer for %
d: 0x%
x
\n
"
,
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to get a buffer for %
u: 0x%l
x
\n
"
,
type
,
hr
);
return
-
1
;
}
...
...
@@ -77,14 +77,14 @@ int ff_dxva2_commit_buffer(AVCodecContext *avctx,
result
=
0
;
}
else
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Buffer for type %
d
was too small
\n
"
,
type
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Buffer for type %
u
was too small
\n
"
,
type
);
result
=
-
1
;
}
hr
=
IDirectXVideoDecoder_ReleaseBuffer
(
ctx
->
decoder
,
type
);
if
(
FAILED
(
hr
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to release buffer type %
d: 0x%
x
\n
"
,
"Failed to release buffer type %
u: 0x%l
x
\n
"
,
type
,
hr
);
result
=
-
1
;
}
...
...
@@ -114,7 +114,7 @@ int ff_dxva2_common_end_frame(AVCodecContext *avctx, Picture *pic,
}
while
(
hr
==
E_PENDING
&&
++
runs
<
50
);
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%
l
x
\n
"
,
hr
);
return
-
1
;
}
...
...
@@ -159,14 +159,14 @@ int ff_dxva2_common_end_frame(AVCodecContext *avctx, Picture *pic,
exec
.
pExtensionData
=
NULL
;
hr
=
IDirectXVideoDecoder_Execute
(
ctx
->
decoder
,
&
exec
);
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%
l
x
\n
"
,
hr
);
result
=
-
1
;
}
end:
hr
=
IDirectXVideoDecoder_EndFrame
(
ctx
->
decoder
,
NULL
);
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%
l
x
\n
"
,
hr
);
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