---
 libavcodec/intrax8.c   | 3 ++-
 libavcodec/intrax8.h   | 3 ++-
 libavcodec/vc1_block.c | 2 +-
 libavcodec/wmv2dec.c   | 2 +-
 4 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c
index 8ac3417..b3b1331 100644
--- a/libavcodec/intrax8.c
+++ b/libavcodec/intrax8.c
@@ -768,7 +768,8 @@ av_cold void ff_intrax8_common_end(IntraX8Context *w)
 
 int ff_intrax8_decode_picture(IntraX8Context *const w, Picture *pict,
                               GetBitContext *gb,
-                              int dquant, int quant_offset, int loopfilter)
+                              int dquant, int quant_offset,
+                              int loopfilter, int lowdelay)
 {
     MpegEncContext *const s = w->s;
     int mb_xy;
diff --git a/libavcodec/intrax8.h b/libavcodec/intrax8.h
index 29fac89..39597cd 100644
--- a/libavcodec/intrax8.h
+++ b/libavcodec/intrax8.h
@@ -110,6 +110,7 @@ void ff_intrax8_common_end(IntraX8Context *w);
  */
 int ff_intrax8_decode_picture(IntraX8Context *w, Picture *pict,
                               GetBitContext *gb,
-                              int quant, int halfpq, int loopfilter);
+                              int quant, int halfpq,
+                              int loopfilter, int lowdelay);
 
 #endif /* AVCODEC_INTRAX8_H */
diff --git a/libavcodec/vc1_block.c b/libavcodec/vc1_block.c
index fbc054f..fb649ad 100644
--- a/libavcodec/vc1_block.c
+++ b/libavcodec/vc1_block.c
@@ -3024,7 +3024,7 @@ void ff_vc1_decode_blocks(VC1Context *v)
     if (v->x8_type) {
         ff_intrax8_decode_picture(&v->x8, &v->s.current_picture, &v->s.gb,
                                   2 * v->pq + v->halfpq, v->pq * 
!v->pquantizer,
-                                  v->s.loop_filter);
+                                  v->s.loop_filter, v->s.low_delay);
     } else {
         v->cur_blk_idx     =  0;
         v->left_blk_idx    = -1;
diff --git a/libavcodec/wmv2dec.c b/libavcodec/wmv2dec.c
index 1eccc1f..a1620b0 100644
--- a/libavcodec/wmv2dec.c
+++ b/libavcodec/wmv2dec.c
@@ -230,7 +230,7 @@ int ff_wmv2_decode_secondary_picture_header(MpegEncContext 
*s)
     if (w->j_type) {
         ff_intrax8_decode_picture(&w->x8, &s->current_picture, &s->gb,
                                   2 * s->qscale, (s->qscale - 1) | 1,
-                                  s->loop_filter);
+                                  s->loop_filter, s->low_delay);
         return 1;
     }
 
-- 
2.7.0

_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to