diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2018-10-31 10:18:45 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-11-02 23:46:31 +0100 |
commit | 506839a3e9cc34c8f719937430008fc12d132fce (patch) | |
tree | 9a2a274fe4a4a25531e4cb7619d2f4f0f6e571a3 /libavcodec/prosumer.c | |
parent | 9acdf17b2c30c44e6e6a3d3b3c22989b7e1117c3 (diff) | |
download | ffmpeg-506839a3e9cc34c8f719937430008fc12d132fce.tar.gz |
avcodec/prosumer: Remove unneeded ()
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/prosumer.c')
-rw-r--r-- | libavcodec/prosumer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/prosumer.c b/libavcodec/prosumer.c index 2fd9880ee1..24905ac80f 100644 --- a/libavcodec/prosumer.c +++ b/libavcodec/prosumer.c @@ -59,7 +59,7 @@ static int decompress(GetByteContext *gb, int size, PutByteContext *pb, const ui while (1) { if (bytestream2_get_bytes_left_p(pb) <= 0 || bytestream2_get_eof(pb)) return 0; - if (((b & 0xFF00u) != 0x8000u) || (b & 0xFFu)) { + if ((b & 0xFF00u) != 0x8000u || (b & 0xFFu)) { if ((b & 0xFF00u) != 0x8000u) { bytestream2_put_le16(pb, b); } else if (b & 0xFFu) { |