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
c60bc02b
Commit
c60bc02b
authored
Nov 11, 2017
by
Timo Rothenpieler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/nvdec: check hardware capabilities
parent
3e0e1634
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
0 deletions
+56
-0
nvdec.c
libavcodec/nvdec.c
+56
-0
No files found.
libavcodec/nvdec.c
View file @
c60bc02b
...
...
@@ -74,6 +74,56 @@ static int map_chroma_format(enum AVPixelFormat pix_fmt)
return
-
1
;
}
static
int
nvdec_test_capabilities
(
NVDECDecoder
*
decoder
,
CUVIDDECODECREATEINFO
*
params
,
void
*
logctx
)
{
CUresult
err
;
CUVIDDECODECAPS
caps
=
{
0
};
caps
.
eCodecType
=
params
->
CodecType
;
caps
.
eChromaFormat
=
params
->
ChromaFormat
;
caps
.
nBitDepthMinus8
=
params
->
bitDepthMinus8
;
err
=
decoder
->
cvdl
->
cuvidGetDecoderCaps
(
&
caps
);
if
(
err
!=
CUDA_SUCCESS
)
{
av_log
(
logctx
,
AV_LOG_ERROR
,
"Failed querying decoder capabilities
\n
"
);
return
AVERROR_UNKNOWN
;
}
av_log
(
logctx
,
AV_LOG_VERBOSE
,
"NVDEC capabilities:
\n
"
);
av_log
(
logctx
,
AV_LOG_VERBOSE
,
"format supported: %s, max_mb_count: %d
\n
"
,
caps
.
bIsSupported
?
"yes"
:
"no"
,
caps
.
nMaxMBCount
);
av_log
(
logctx
,
AV_LOG_VERBOSE
,
"min_width: %d, max_width: %d
\n
"
,
caps
.
nMinWidth
,
caps
.
nMaxWidth
);
av_log
(
logctx
,
AV_LOG_VERBOSE
,
"min_height: %d, max_height: %d
\n
"
,
caps
.
nMinHeight
,
caps
.
nMaxHeight
);
if
(
!
caps
.
bIsSupported
)
{
av_log
(
logctx
,
AV_LOG_ERROR
,
"Hardware is lacking required capabilities
\n
"
);
return
AVERROR
(
EINVAL
);
}
if
(
params
->
ulWidth
>
caps
.
nMaxWidth
||
params
->
ulWidth
<
caps
.
nMinWidth
)
{
av_log
(
logctx
,
AV_LOG_ERROR
,
"Video width %d not within range from %d to %d
\n
"
,
(
int
)
params
->
ulWidth
,
caps
.
nMinWidth
,
caps
.
nMaxWidth
);
return
AVERROR
(
EINVAL
);
}
if
(
params
->
ulHeight
>
caps
.
nMaxHeight
||
params
->
ulHeight
<
caps
.
nMinHeight
)
{
av_log
(
logctx
,
AV_LOG_ERROR
,
"Video height %d not within range from %d to %d
\n
"
,
(
int
)
params
->
ulHeight
,
caps
.
nMinHeight
,
caps
.
nMaxHeight
);
return
AVERROR
(
EINVAL
);
}
if
((
params
->
ulWidth
*
params
->
ulHeight
)
/
256
>
caps
.
nMaxMBCount
)
{
av_log
(
logctx
,
AV_LOG_ERROR
,
"Video macroblock count %d exceeds maximum of %d
\n
"
,
(
int
)(
params
->
ulWidth
*
params
->
ulHeight
)
/
256
,
caps
.
nMaxMBCount
);
return
AVERROR
(
EINVAL
);
}
return
0
;
}
static
void
nvdec_decoder_free
(
void
*
opaque
,
uint8_t
*
data
)
{
NVDECDecoder
*
decoder
=
(
NVDECDecoder
*
)
data
;
...
...
@@ -132,6 +182,12 @@ static int nvdec_decoder_create(AVBufferRef **out, AVBufferRef *hw_device_ref,
goto
fail
;
}
ret
=
nvdec_test_capabilities
(
decoder
,
params
,
logctx
);
if
(
ret
<
0
)
{
decoder
->
cudl
->
cuCtxPopCurrent
(
&
dummy
);
goto
fail
;
}
err
=
decoder
->
cvdl
->
cuvidCreateDecoder
(
&
decoder
->
decoder
,
params
);
decoder
->
cudl
->
cuCtxPopCurrent
(
&
dummy
);
...
...
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