libeplayer3-arm: reduce compiler warnings

Origin commit data
------------------
Branch: master
Commit: e5d24ce4ed
Author: max_10 <max_10@gmx.de>
Date: 2018-02-08 (Thu, 08 Feb 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
max_10
2018-02-08 20:42:15 +01:00
committed by Thilo Graf
parent e12e00f074
commit 3b50875296
22 changed files with 105 additions and 87 deletions

View File

@@ -24,7 +24,7 @@
static inline int HasADTSHeader(uint8_t *data, int size)
{
if (size >= AAC_HEADER_LENGTH && 0xFF == data[0] && 0xF0 == 0xF0 & data[1] &&
if (size >= AAC_HEADER_LENGTH && 0xFF == data[0] && 0xF0 == (0xF0 & data[1]) &&
size == ((data[3] & 0x3) << 11 | data[4] << 3 | data[5] >> 5))
{
return 1;