]> git.sesse.net Git - ffmpeg/commitdiff
libavcodec/dxv: Remove redundant seek
authorMichael Niedermayer <michael@niedermayer.cc>
Tue, 24 Sep 2019 10:39:25 +0000 (12:39 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Tue, 8 Oct 2019 14:24:58 +0000 (16:24 +0200)
This seeks to the position the previous call to dxv_decompress_opcodes()
positioned us in case of success

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/dxv.c

index d67412a3a23c79d801e719267099db2cc4f69e67..df63006d04cf63c744bacae8a8ce9931e976178f 100644 (file)
@@ -755,7 +755,6 @@ static int dxv_decompress_cocg(DXVContext *ctx, GetByteContext *gb,
     skip0 = dxv_decompress_opcodes(gb, op_data0, op_size0);
     if (skip0 < 0)
         return skip0;
-    bytestream2_seek(gb, data_start + op_offset + skip0 - 12, SEEK_SET);
     if (op_size1 > max_op_size1)
         return AVERROR_INVALIDDATA;
     skip1 = dxv_decompress_opcodes(gb, op_data1, op_size1);