mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-14 00:58:38 +02:00
avcodec/iff: remove useless ()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
92139c1bd1
commit
9585c50942
@ -1381,7 +1381,7 @@ static void decode_delta_l(uint8_t *dst,
|
|||||||
bytestream2_init(&dgb, buf + 2 * poff0, buf_end - (buf + 2 * poff0));
|
bytestream2_init(&dgb, buf + 2 * poff0, buf_end - (buf + 2 * poff0));
|
||||||
bytestream2_init(&ogb, buf + 2 * poff1, buf_end - (buf + 2 * poff1));
|
bytestream2_init(&ogb, buf + 2 * poff1, buf_end - (buf + 2 * poff1));
|
||||||
|
|
||||||
while ((bytestream2_peek_be16(&ogb)) != 0xFFFF && bytestream2_get_bytes_left(&ogb) >= 4) {
|
while (bytestream2_peek_be16(&ogb) != 0xFFFF && bytestream2_get_bytes_left(&ogb) >= 4) {
|
||||||
uint32_t offset = bytestream2_get_be16(&ogb);
|
uint32_t offset = bytestream2_get_be16(&ogb);
|
||||||
int16_t cnt = bytestream2_get_be16(&ogb);
|
int16_t cnt = bytestream2_get_be16(&ogb);
|
||||||
uint16_t data;
|
uint16_t data;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user