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
1dc8559e
Commit
1dc8559e
authored
Jan 23, 2014
by
Ronald S. Bultje
Committed by
Clément Bœsch
Feb 09, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp9: more aligned zeroes.
parent
0c30c8dd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
vp9.c
libavcodec/vp9.c
+3
-2
No files found.
libavcodec/vp9.c
View file @
1dc8559e
...
...
@@ -1201,7 +1201,7 @@ static void fill_mv(VP9Context *s,
VP9Block
*
b
=
s
->
b
;
if
(
mode
==
ZEROMV
)
{
memset
(
mv
,
0
,
sizeof
(
*
mv
)
*
2
);
AV_ZERO64
(
mv
);
}
else
{
int
hp
;
...
...
@@ -1317,7 +1317,8 @@ static void decode_mode(AVCodecContext *ctx)
memset
(
&
s
->
above_segpred_ctx
[
col
],
0
,
w4
);
memset
(
&
s
->
left_segpred_ctx
[
row7
],
0
,
h4
);
}
if
((
s
->
segmentation
.
enabled
&&
s
->
segmentation
.
update_map
)
||
s
->
keyframe
)
{
if
(
s
->
segmentation
.
enabled
&&
(
s
->
segmentation
.
update_map
||
s
->
keyframe
||
s
->
intraonly
))
{
uint8_t
*
segmap
=
s
->
frames
[
CUR_FRAME
].
segmentation_map
;
for
(
y
=
0
;
y
<
h4
;
y
++
)
...
...
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