hevc_mvs: initialize the temporal MV in case of missing ref

The caller expects the MV to always be initialized.
pull/87/head
Anton Khirnov 11 years ago
parent 28816050e4
commit 79a60c8e77
  1. 4
      libavcodec/hevc_mvs.c

@ -257,8 +257,10 @@ static int temporal_luma_motion_vector(HEVCContext *s, int x0, int y0,
HEVCFrame *ref = s->ref->collocated_ref;
if (!ref)
if (!ref) {
memset(mvLXCol, 0, sizeof(*mvLXCol));
return 0;
}
tab_mvf = ref->tab_mvf;
colPic = ref->poc;

Loading…
Cancel
Save