---
 libavcodec/4xm.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c
index ba8bb4a..cffb315 100644
--- a/libavcodec/4xm.c
+++ b/libavcodec/4xm.c
@@ -650,8 +650,6 @@ static int decode_i_frame(FourXContext *f, const uint8_t 
*buf, int length){
     int x, y;
     const int width= f->avctx->width;
     const int height= f->avctx->height;
-    uint16_t *dst= (uint16_t*)f->current_picture.data[0];
-    const int stride= f->current_picture.linesize[0]>>1;
     const unsigned int bitstream_size= AV_RL32(buf);
     const int token_count av_unused = AV_RL32(buf + bitstream_size + 8);
     unsigned int prestream_size= 4*AV_RL32(buf + bitstream_size + 4);
@@ -686,7 +684,6 @@ static int decode_i_frame(FourXContext *f, const uint8_t 
*buf, int length){
 
             idct_put(f, x, y);
         }
-        dst += 16*stride;
     }
 
     if(get_vlc2(&f->pre_gb, f->pre_vlc.table, ACDC_VLC_BITS, 3) != 256)
-- 
1.7.7.3

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

Reply via email to