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
30b28f9a
Commit
30b28f9a
authored
Apr 06, 2020
by
Timo Rothenpieler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil/hwcontext_cuda: Only handle CUDA hardware frames
parent
741565a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
hwcontext_cuda.c
libavutil/hwcontext_cuda.c
+4
-0
No files found.
libavutil/hwcontext_cuda.c
View file @
30b28f9a
...
...
@@ -212,6 +212,10 @@ static int cuda_transfer_data(AVHWFramesContext *ctx, AVFrame *dst,
CUcontext
dummy
;
int
i
,
ret
;
if
((
src
->
hw_frames_ctx
&&
((
AVHWFramesContext
*
)
src
->
hw_frames_ctx
->
data
)
->
format
!=
AV_PIX_FMT_CUDA
)
||
(
dst
->
hw_frames_ctx
&&
((
AVHWFramesContext
*
)
dst
->
hw_frames_ctx
->
data
)
->
format
!=
AV_PIX_FMT_CUDA
))
return
AVERROR
(
ENOSYS
);
ret
=
CHECK_CU
(
cu
->
cuCtxPushCurrent
(
hwctx
->
cuda_ctx
));
if
(
ret
<
0
)
return
ret
;
...
...
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