Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
93d1756a
Commit
93d1756a
authored
May 08, 2018
by
Timo Rothenpieler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/cuviddec: explicitly synchronize cuMemcpy calls
parent
9b82e333
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
cuviddec.c
libavcodec/cuviddec.c
+5
-1
No files found.
libavcodec/cuviddec.c
View file @
93d1756a
...
...
@@ -550,12 +550,16 @@ static int cuvid_output_frame(AVCodecContext *avctx, AVFrame *frame)
.
Height
=
avctx
->
height
>>
(
i
?
1
:
0
),
};
ret
=
CHECK_CU
(
ctx
->
cudl
->
cuMemcpy2D
(
&
cpy
));
ret
=
CHECK_CU
(
ctx
->
cudl
->
cuMemcpy2D
Async
(
&
cpy
,
device_hwctx
->
stream
));
if
(
ret
<
0
)
goto
error
;
offset
+=
avctx
->
height
;
}
ret
=
CHECK_CU
(
ctx
->
cudl
->
cuStreamSynchronize
(
device_hwctx
->
stream
));
if
(
ret
<
0
)
goto
error
;
}
else
if
(
avctx
->
pix_fmt
==
AV_PIX_FMT_NV12
||
avctx
->
pix_fmt
==
AV_PIX_FMT_P010
||
avctx
->
pix_fmt
==
AV_PIX_FMT_P016
)
{
...
...
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