comparison mpegaudio.h @ 10093:beb616cf1885 libavcodec

Remove some unnecessary alignment specifiers None of these arrays are used in ways requiring extra alignment.
author mru
date Wed, 26 Aug 2009 12:12:40 +0000
parents 0dce4fe6e6f3
children 899237b1961f
comparison
equal deleted inserted replaced
10092:e85fbfe709d8 10093:beb616cf1885
106 MPA_DECODE_HEADER 106 MPA_DECODE_HEADER
107 } MPADecodeHeader; 107 } MPADecodeHeader;
108 108
109 typedef struct MPADecodeContext { 109 typedef struct MPADecodeContext {
110 MPA_DECODE_HEADER 110 MPA_DECODE_HEADER
111 DECLARE_ALIGNED_8(uint8_t, last_buf[2*BACKSTEP_SIZE + EXTRABYTES]); 111 uint8_t last_buf[2*BACKSTEP_SIZE + EXTRABYTES];
112 int last_buf_size; 112 int last_buf_size;
113 /* next header (used in free format parsing) */ 113 /* next header (used in free format parsing) */
114 uint32_t free_format_next_header; 114 uint32_t free_format_next_header;
115 GetBitContext gb; 115 GetBitContext gb;
116 GetBitContext in_gb; 116 GetBitContext in_gb;