1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-30 15:58:23 +02:00

hevc_mvs: initialize the temporal MV in case of missing ref

The caller expects the MV to always be initialized.
This commit is contained in:
Anton Khirnov 2014-09-29 16:16:50 +00:00
parent 28816050e4
commit 79a60c8e77

View File

@ -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;