Browse Source

avcodec/error_resilience: wait for previous frame to be available

This is possibly redundant but its more correct

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.1
Michael Niedermayer 10 years ago
parent
commit
5694b28211
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/error_resilience.c

+ 2
- 0
libavcodec/error_resilience.c View File

@@ -393,6 +393,8 @@ static void guess_mv(ERContext *s)
set_mv_strides(s, &mot_step, &mot_stride);

num_avail = 0;
if (s->last_pic.motion_val[0])
ff_thread_await_progress(s->last_pic.tf, mb_height-1, 0);
for (i = 0; i < mb_width * mb_height; i++) {
const int mb_xy = s->mb_index2xy[i];
int f = 0;


Loading…
Cancel
Save