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
538de435
Commit
538de435
authored
Nov 12, 2017
by
Timo Rothenpieler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/nvdec: warn about thread count if applicable
parent
f3f73f08
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
nvdec.c
libavcodec/nvdec.c
+8
-1
No files found.
libavcodec/nvdec.c
View file @
538de435
...
...
@@ -292,8 +292,15 @@ int ff_nvdec_decode_init(AVCodecContext *avctx)
params
.
ulNumOutputSurfaces
=
1
;
ret
=
nvdec_decoder_create
(
&
ctx
->
decoder_ref
,
frames_ctx
->
device_ref
,
&
params
,
avctx
);
if
(
ret
<
0
)
if
(
ret
<
0
)
{
if
(
params
.
ulNumDecodeSurfaces
>
32
)
{
av_log
(
avctx
,
AV_LOG_WARNING
,
"Using more than 32 (%d) decode surfaces might cause nvdec to fail.
\n
"
,
(
int
)
params
.
ulNumDecodeSurfaces
);
av_log
(
avctx
,
AV_LOG_WARNING
,
"Try lowering the amount of threads. Using %d right now.
\n
"
,
avctx
->
thread_count
);
}
return
ret
;
}
pool
=
av_mallocz
(
sizeof
(
*
pool
));
if
(
!
pool
)
{
...
...
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