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
c67594a2
Commit
c67594a2
authored
Jun 22, 2016
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qsvdec_hevc: fix a variable name
hevcenc -> hevcdec, this is a _decoder_ plugin.
parent
f62bb216
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
qsvdec_h2645.c
libavcodec/qsvdec_h2645.c
+2
-2
No files found.
libavcodec/qsvdec_h2645.c
View file @
c67594a2
...
...
@@ -88,7 +88,7 @@ static av_cold int qsv_decode_init(AVCodecContext *avctx)
int
ret
;
if
(
avctx
->
codec_id
==
AV_CODEC_ID_HEVC
&&
s
->
load_plugin
!=
LOAD_PLUGIN_NONE
)
{
static
const
char
*
uid_hevc
en
c_sw
=
"15dd936825ad475ea34e35f3f54217a6"
;
static
const
char
*
uid_hevc
de
c_sw
=
"15dd936825ad475ea34e35f3f54217a6"
;
if
(
s
->
qsv
.
load_plugins
[
0
])
{
av_log
(
avctx
,
AV_LOG_WARNING
,
...
...
@@ -96,7 +96,7 @@ static av_cold int qsv_decode_init(AVCodecContext *avctx)
"The load_plugin value will be ignored.
\n
"
);
}
else
{
av_freep
(
&
s
->
qsv
.
load_plugins
);
s
->
qsv
.
load_plugins
=
av_strdup
(
uid_hevc
en
c_sw
);
s
->
qsv
.
load_plugins
=
av_strdup
(
uid_hevc
de
c_sw
);
if
(
!
s
->
qsv
.
load_plugins
)
return
AVERROR
(
ENOMEM
);
}
...
...
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