Commit 79a60c8e authored by Anton Khirnov's avatar Anton Khirnov

hevc_mvs: initialize the temporal MV in case of missing ref

The caller expects the MV to always be initialized.
parent 28816050
...@@ -257,8 +257,10 @@ static int temporal_luma_motion_vector(HEVCContext *s, int x0, int y0, ...@@ -257,8 +257,10 @@ static int temporal_luma_motion_vector(HEVCContext *s, int x0, int y0,
HEVCFrame *ref = s->ref->collocated_ref; HEVCFrame *ref = s->ref->collocated_ref;
if (!ref) if (!ref) {
memset(mvLXCol, 0, sizeof(*mvLXCol));
return 0; return 0;
}
tab_mvf = ref->tab_mvf; tab_mvf = ref->tab_mvf;
colPic = ref->poc; colPic = ref->poc;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment