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
9e9be5a2
Commit
9e9be5a2
authored
Nov 09, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hevc_mvs: prevent unitialized use
CC: libav-stable@libav.org Bug-Id: CID 1244202
parent
0e1ebfeb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
hevc_mvs.c
libavcodec/hevc_mvs.c
+1
-1
No files found.
libavcodec/hevc_mvs.c
View file @
9e9be5a2
...
...
@@ -470,7 +470,7 @@ static void derive_spatial_merge_candidates(HEVCContext *s, int x0, int y0,
// temporal motion vector candidate
if
(
s
->
sh
.
slice_temporal_mvp_enabled_flag
&&
nb_merge_cand
<
s
->
sh
.
max_num_merge_cand
)
{
Mv
mv_l0_col
,
mv_l1_col
;
Mv
mv_l0_col
=
{
0
},
mv_l1_col
=
{
0
}
;
int
available_l0
=
temporal_luma_motion_vector
(
s
,
x0
,
y0
,
nPbW
,
nPbH
,
0
,
&
mv_l0_col
,
0
);
int
available_l1
=
(
s
->
sh
.
slice_type
==
B_SLICE
)
?
...
...
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