mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
AAC: fix strict aliasing violation in parser
Originally committed as revision 16180 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a2fc0f6a6d
commit
cb56b44086
@ -32,10 +32,13 @@ static int aac_sync(uint64_t state, AACAC3ParseContext *hdr_info,
|
|||||||
{
|
{
|
||||||
GetBitContext bits;
|
GetBitContext bits;
|
||||||
int size, rdb, ch, sr;
|
int size, rdb, ch, sr;
|
||||||
uint8_t tmp[8];
|
union {
|
||||||
|
uint64_t u64;
|
||||||
|
uint8_t u8[8];
|
||||||
|
} tmp;
|
||||||
|
|
||||||
AV_WB64(tmp, state);
|
tmp.u64 = be2me_64(state);
|
||||||
init_get_bits(&bits, tmp+8-AAC_HEADER_SIZE, AAC_HEADER_SIZE * 8);
|
init_get_bits(&bits, tmp.u8+8-AAC_HEADER_SIZE, AAC_HEADER_SIZE * 8);
|
||||||
|
|
||||||
if(get_bits(&bits, 12) != 0xfff)
|
if(get_bits(&bits, 12) != 0xfff)
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user