提交 d3b76c99 编写于 作者: M Michael Niedermayer

avcodec/prosumer: Simplify code slightly in decompress()

Signed-off-by: NMichael Niedermayer <michael@niedermayer.cc>
上级 ec28a851
......@@ -84,16 +84,13 @@ static int decompress(GetByteContext *gb, int size, PutByteContext *pb, const ui
if (bytestream2_get_bytes_left(gb) <= 0) {
if (!a)
return 0;
cnt = 4;
} else {
pos = bytestream2_tell(gb) ^ 2;
bytestream2_seek(gb, pos, SEEK_SET);
pos = bytestream2_tell(gb);
bytestream2_seek(gb, pos ^ 2, SEEK_SET);
AV_WN16(&a, bytestream2_peek_le16(gb));
pos = pos ^ 2;
bytestream2_seek(gb, pos, SEEK_SET);
bytestream2_skip(gb, 2);
cnt = 4;
bytestream2_seek(gb, pos + 2, SEEK_SET);
}
cnt = 4;
}
c--;
}
......@@ -117,12 +114,10 @@ static int decompress(GetByteContext *gb, int size, PutByteContext *pb, const ui
}
return 0;
}
pos = bytestream2_tell(gb) ^ 2;
bytestream2_seek(gb, pos, SEEK_SET);
pos = bytestream2_tell(gb);
bytestream2_seek(gb, pos ^ 2, SEEK_SET);
AV_WN16(&a, bytestream2_peek_le16(gb));
pos = pos ^ 2;
bytestream2_seek(gb, pos, SEEK_SET);
bytestream2_skip(gb, 2);
bytestream2_seek(gb, pos + 2, SEEK_SET);
cnt = 4;
idx--;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册