comparison dtsdec.c @ 2979:bfabfdf9ce55 libavcodec

COSMETICS: tabs --> spaces, some prettyprinting
author diego
date Thu, 22 Dec 2005 01:10:11 +0000
parents ef2149182f1c
children 8072ed8993f6
comparison
equal deleted inserted replaced
2978:403183bbb505 2979:bfabfdf9ce55
192 static int 192 static int
193 channels_multi (int flags) 193 channels_multi (int flags)
194 { 194 {
195 if (flags & DTS_LFE) 195 if (flags & DTS_LFE)
196 return 6; 196 return 6;
197 else if (flags & 1) /* center channel */ 197 else if (flags & 1) /* center channel */
198 return 5; 198 return 5;
199 else if ((flags & DTS_CHANNEL_MASK) == DTS_2F2R) 199 else if ((flags & DTS_CHANNEL_MASK) == DTS_2F2R)
200 return 4; 200 return 4;
201 else 201 else
202 return 2; 202 return 2;