# HG changeset patch # User mru # Date 1223724105 0 # Node ID e381bf921a882e924b9b54c51b98cf763493443d # Parent cecd3150f82bf1ed42d5b36835f3236e1b6e02fc aac_parser: fix strict aliasing violation diff -r cecd3150f82b -r e381bf921a88 aac_parser.c --- a/aac_parser.c Thu Oct 09 18:36:49 2008 +0000 +++ b/aac_parser.c Sat Oct 11 11:21:45 2008 +0000 @@ -32,9 +32,10 @@ { GetBitContext bits; int size, rdb, ch, sr; - uint64_t tmp = be2me_64(state); + uint8_t tmp[8]; - init_get_bits(&bits, ((uint8_t *)&tmp)+8-AAC_HEADER_SIZE, AAC_HEADER_SIZE * 8); + AV_WB64(tmp, state); + init_get_bits(&bits, tmp+8-AAC_HEADER_SIZE, AAC_HEADER_SIZE * 8); if(get_bits(&bits, 12) != 0xfff) return 0;