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
e1b5620b
Commit
e1b5620b
authored
Sep 29, 2019
by
Mark Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/vp9_raw_reorder_bsf: Fix operator ordering
Fixes CID 1413024.
parent
177a90b1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp9_raw_reorder_bsf.c
libavcodec/vp9_raw_reorder_bsf.c
+1
-1
No files found.
libavcodec/vp9_raw_reorder_bsf.c
View file @
e1b5620b
...
...
@@ -292,7 +292,7 @@ static int vp9_raw_reorder_filter(AVBSFContext *bsf, AVPacket *out)
return
err
;
}
if
(
in
->
data
[
in
->
size
-
1
]
&
0xe0
==
0xc0
)
{
if
(
(
in
->
data
[
in
->
size
-
1
]
&
0xe0
)
==
0xc0
)
{
av_log
(
bsf
,
AV_LOG_ERROR
,
"Input in superframes is not "
"supported.
\n
"
);
av_packet_free
(
&
in
);
...
...
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