Commit 8756e5ba authored by michael's avatar michael

Make gcc 2.95 happy.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15589 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2c72e6bd
......@@ -201,7 +201,7 @@ static int dv_extract_audio_info(DVDemuxContext* c, uint8_t* frame)
quant = as_pack[4] & 0x07; /* 0 - 16bit linear, 1 - 12bit nonlinear */
/* note: ach counts PAIRS of channels (i.e. stereo channels) */
ach = (int[4]){ 1, 0, 2, 4}[stype];
ach = ((int[4]){ 1, 0, 2, 4})[stype];
if (ach == 1 && quant && freq == 2)
ach = 2;
......
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