1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

hevc_mvs: prevent unitialized use

CC: libav-stable@libav.org
Bug-Id: CID 1244202
This commit is contained in:
Vittorio Giovara
2014-11-09 08:48:39 +01:00
parent 0e1ebfebc8
commit 9e9be5a20c

View File

@@ -470,7 +470,7 @@ static void derive_spatial_merge_candidates(HEVCContext *s, int x0, int y0,
// temporal motion vector candidate // temporal motion vector candidate
if (s->sh.slice_temporal_mvp_enabled_flag && if (s->sh.slice_temporal_mvp_enabled_flag &&
nb_merge_cand < s->sh.max_num_merge_cand) { 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, int available_l0 = temporal_luma_motion_vector(s, x0, y0, nPbW, nPbH,
0, &mv_l0_col, 0); 0, &mv_l0_col, 0);
int available_l1 = (s->sh.slice_type == B_SLICE) ? int available_l1 = (s->sh.slice_type == B_SLICE) ?