提交 018ca8b7 编写于 作者: M Michael Niedermayer

Merge commit '79a60c8e'

* commit '79a60c8e':
  hevc_mvs: initialize the temporal MV in case of missing ref
Merged-by: NMichael Niedermayer <michaelni@gmx.at>
......@@ -227,8 +227,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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册