Commit 329898aa authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/bitstream: try to workaround internal compiler bug in gcc 4.2

gcc 4.2 seems not maintained anymore so theres no option besides
just working around it.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 33f83a21
......@@ -163,7 +163,7 @@ static int build_table(VLC *vlc, int table_nb_bits, int nb_codes,
int table_size, table_index, index, code_prefix, symbol, subtable_bits;
int i, j, k, n, nb, inc;
uint32_t code;
volatile VLC_TYPE (*table)[2];
volatile VLC_TYPE (* volatile table)[2];
table_size = 1 << table_nb_bits;
if (table_nb_bits > 30)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment