]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/vc1_block.c
Merge commit 'b5f47d95c6cb8ffa9982eb8fd3e9ab5c9f97e914'
[ffmpeg] / libavcodec / vc1_block.c
index 38532515277d47970397445c98956c8988d96568..96d2a9b9913801a4c57c6845845bf82a604dfeea 100644 (file)
@@ -2931,8 +2931,10 @@ void ff_vc1_decode_blocks(VC1Context *v)
 
     v->s.esc3_level_length = 0;
     if (v->x8_type) {
-        ff_intrax8_decode_picture(&v->x8, 2 * v->pq + v->halfpq,
-                                  v->pq * !v->pquantizer, v->s.loop_filter);
+        ff_intrax8_decode_picture(&v->x8, &v->s.current_picture,
+                                  &v->s.gb, &v->s.mb_x, &v->s.mb_y,
+                                  2 * v->pq + v->halfpq, v->pq * !v->pquantizer,
+                                  v->s.loop_filter, v->s.low_delay);
 
         ff_er_add_slice(&v->s.er, 0, 0,
                         (v->s.mb_x >> 1) - 1, (v->s.mb_y >> 1) - 1,