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
fea47134
Commit
fea47134
authored
May 08, 2017
by
Timo Rothenpieler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/cuvid: use capability check instead of dummy decoder
parent
f15129a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
83 additions
and
37 deletions
+83
-37
cuvid.c
libavcodec/cuvid.c
+83
-37
No files found.
libavcodec/cuvid.c
View file @
fea47134
...
...
@@ -76,6 +76,8 @@ typedef struct CuvidContext
cudaVideoCodec
codec_type
;
cudaVideoChromaFormat
chroma_format
;
CUVIDDECODECAPS
caps8
,
caps10
,
caps12
;
CUVIDPARSERPARAMS
cuparseinfo
;
CUVIDEOFORMATEX
cuparse_ext
;
...
...
@@ -119,6 +121,7 @@ static int CUDAAPI cuvid_handle_video_sequence(void *opaque, CUVIDEOFORMAT* form
AVCodecContext
*
avctx
=
opaque
;
CuvidContext
*
ctx
=
avctx
->
priv_data
;
AVHWFramesContext
*
hwframe_ctx
=
(
AVHWFramesContext
*
)
ctx
->
hwframe
->
data
;
CUVIDDECODECAPS
*
caps
=
NULL
;
CUVIDDECODECREATEINFO
cuinfo
;
int
surface_fmt
;
...
...
@@ -166,19 +169,27 @@ static int CUDAAPI cuvid_handle_video_sequence(void *opaque, CUVIDEOFORMAT* form
switch
(
format
->
bit_depth_luma_minus8
)
{
case
0
:
// 8-bit
pix_fmts
[
1
]
=
AV_PIX_FMT_NV12
;
caps
=
&
ctx
->
caps8
;
break
;
case
2
:
// 10-bit
pix_fmts
[
1
]
=
AV_PIX_FMT_P010
;
caps
=
&
ctx
->
caps10
;
break
;
case
4
:
// 12-bit
pix_fmts
[
1
]
=
AV_PIX_FMT_P016
;
caps
=
&
ctx
->
caps12
;
break
;
default:
break
;
}
if
(
!
caps
||
!
caps
->
bIsSupported
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"unsupported bit depth: %d
\n
"
,
format
->
bit_depth_luma_minus8
+
8
);
ctx
->
internal_error
=
AVERROR
(
EINVAL
);
return
0
;
}
surface_fmt
=
ff_get_format
(
avctx
,
pix_fmts
);
if
(
surface_fmt
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"ff_get_format failed: %d
\n
"
,
surface_fmt
);
...
...
@@ -686,46 +697,75 @@ static av_cold int cuvid_decode_end(AVCodecContext *avctx)
return
0
;
}
static
int
cuvid_test_dummy_decoder
(
AVCodecContext
*
avctx
,
const
CUVIDPARSERPARAMS
*
cuparseinfo
,
int
probed_width
,
int
probed_height
)
static
int
cuvid_test_capabilities
(
AVCodecContext
*
avctx
,
const
CUVIDPARSERPARAMS
*
cuparseinfo
,
int
probed_width
,
int
probed_height
,
int
bit_depth
)
{
CuvidContext
*
ctx
=
avctx
->
priv_data
;
CUVIDDECODECREATEINFO
cuinfo
;
CUvideodecoder
cudec
=
0
;
int
ret
=
0
;
memset
(
&
cuinfo
,
0
,
sizeof
(
cuinfo
));
cuinfo
.
CodecType
=
cuparseinfo
->
CodecType
;
cuinfo
.
ChromaFormat
=
cudaVideoChromaFormat_420
;
cuinfo
.
OutputFormat
=
cudaVideoSurfaceFormat_NV12
;
cuinfo
.
ulWidth
=
probed_width
;
cuinfo
.
ulHeight
=
probed_height
;
cuinfo
.
ulTargetWidth
=
cuinfo
.
ulWidth
;
cuinfo
.
ulTargetHeight
=
cuinfo
.
ulHeight
;
cuinfo
.
target_rect
.
left
=
0
;
cuinfo
.
target_rect
.
top
=
0
;
cuinfo
.
target_rect
.
right
=
cuinfo
.
ulWidth
;
cuinfo
.
target_rect
.
bottom
=
cuinfo
.
ulHeight
;
CUVIDDECODECAPS
*
caps
;
int
res8
=
0
,
res10
=
0
,
res12
=
0
;
ctx
->
caps8
.
eCodecType
=
ctx
->
caps10
.
eCodecType
=
ctx
->
caps12
.
eCodecType
=
cuparseinfo
->
CodecType
;
ctx
->
caps8
.
eChromaFormat
=
ctx
->
caps10
.
eChromaFormat
=
ctx
->
caps12
.
eChromaFormat
=
cudaVideoChromaFormat_420
;
ctx
->
caps8
.
nBitDepthMinus8
=
0
;
ctx
->
caps10
.
nBitDepthMinus8
=
2
;
ctx
->
caps12
.
nBitDepthMinus8
=
4
;
res8
=
CHECK_CU
(
ctx
->
cvdl
->
cuvidGetDecoderCaps
(
&
ctx
->
caps8
));
res10
=
CHECK_CU
(
ctx
->
cvdl
->
cuvidGetDecoderCaps
(
&
ctx
->
caps10
));
res12
=
CHECK_CU
(
ctx
->
cvdl
->
cuvidGetDecoderCaps
(
&
ctx
->
caps12
));
av_log
(
avctx
,
AV_LOG_VERBOSE
,
"CUVID capabilities for %s:
\n
"
,
avctx
->
codec
->
name
);
av_log
(
avctx
,
AV_LOG_VERBOSE
,
"8 bit: supported: %d, min_width: %d, max_width: %d, min_height: %d, max_height: %d
\n
"
,
ctx
->
caps8
.
bIsSupported
,
ctx
->
caps8
.
nMinWidth
,
ctx
->
caps8
.
nMaxWidth
,
ctx
->
caps8
.
nMinHeight
,
ctx
->
caps8
.
nMaxHeight
);
av_log
(
avctx
,
AV_LOG_VERBOSE
,
"10 bit: supported: %d, min_width: %d, max_width: %d, min_height: %d, max_height: %d
\n
"
,
ctx
->
caps10
.
bIsSupported
,
ctx
->
caps10
.
nMinWidth
,
ctx
->
caps10
.
nMaxWidth
,
ctx
->
caps10
.
nMinHeight
,
ctx
->
caps10
.
nMaxHeight
);
av_log
(
avctx
,
AV_LOG_VERBOSE
,
"12 bit: supported: %d, min_width: %d, max_width: %d, min_height: %d, max_height: %d
\n
"
,
ctx
->
caps12
.
bIsSupported
,
ctx
->
caps12
.
nMinWidth
,
ctx
->
caps12
.
nMaxWidth
,
ctx
->
caps12
.
nMinHeight
,
ctx
->
caps12
.
nMaxHeight
);
switch
(
bit_depth
)
{
case
10
:
caps
=
&
ctx
->
caps10
;
if
(
res10
<
0
)
return
res10
;
break
;
case
12
:
caps
=
&
ctx
->
caps12
;
if
(
res12
<
0
)
return
res12
;
break
;
default:
caps
=
&
ctx
->
caps8
;
if
(
res8
<
0
)
return
res8
;
}
cuinfo
.
ulNumDecodeSurfaces
=
ctx
->
nb_surfaces
;
cuinfo
.
ulNumOutputSurfaces
=
1
;
cuinfo
.
ulCreationFlags
=
cudaVideoCreate_PreferCUVID
;
cuinfo
.
bitDepthMinus8
=
0
;
if
(
!
ctx
->
caps8
.
bIsSupported
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Codec %s is not supported.
\n
"
,
avctx
->
codec
->
name
)
;
return
AVERROR
(
EINVAL
)
;
}
cuinfo
.
DeinterlaceMode
=
cudaVideoDeinterlaceMode_Weave
;
if
(
!
caps
->
bIsSupported
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Bit depth %d is not supported.
\n
"
,
bit_depth
);
return
AVERROR
(
EINVAL
);
}
ret
=
CHECK_CU
(
ctx
->
cvdl
->
cuvidCreateDecoder
(
&
cudec
,
&
cuinfo
));
if
(
ret
<
0
)
return
ret
;
if
(
probed_width
>
caps
->
nMaxWidth
||
probed_width
<
caps
->
nMinWidth
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Video width %d not within range from %d to %d
\n
"
,
probed_width
,
caps
->
nMinWidth
,
caps
->
nMaxWidth
);
return
AVERROR
(
EINVAL
);
}
ret
=
CHECK_CU
(
ctx
->
cvdl
->
cuvidDestroyDecoder
(
cudec
));
if
(
ret
<
0
)
return
ret
;
if
(
probed_height
>
caps
->
nMaxHeight
||
probed_height
<
caps
->
nMinHeight
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Video height %d not within range from %d to %d
\n
"
,
probed_height
,
caps
->
nMinHeight
,
caps
->
nMaxHeight
);
return
AVERROR
(
EINVAL
);
}
return
0
;
}
...
...
@@ -748,6 +788,11 @@ static av_cold int cuvid_decode_init(AVCodecContext *avctx)
int
probed_width
=
avctx
->
coded_width
?
avctx
->
coded_width
:
1280
;
int
probed_height
=
avctx
->
coded_height
?
avctx
->
coded_height
:
720
;
int
probed_bit_depth
=
8
;
const
AVPixFmtDescriptor
*
probe_desc
=
av_pix_fmt_desc_get
(
avctx
->
pix_fmt
);
if
(
probe_desc
&&
probe_desc
->
nb_components
)
probed_bit_depth
=
probe_desc
->
comp
[
0
].
depth
;
// Accelerated transcoding scenarios with 'ffmpeg' require that the
// pix_fmt be set to AV_PIX_FMT_CUDA early. The sw_pix_fmt, and the
...
...
@@ -927,9 +972,10 @@ static av_cold int cuvid_decode_init(AVCodecContext *avctx)
if
(
ret
<
0
)
goto
error
;
ret
=
cuvid_test_dummy_decoder
(
avctx
,
&
ctx
->
cuparseinfo
,
probed_width
,
probed_height
);
ret
=
cuvid_test_capabilities
(
avctx
,
&
ctx
->
cuparseinfo
,
probed_width
,
probed_height
,
probed_bit_depth
);
if
(
ret
<
0
)
goto
error
;
...
...
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