| 1343 | } |
| 1344 | } |
| 1345 | END_API_FUNC |
| 1346 | |
| 1347 | |
| 1348 | ALuint BytesFromFmt(FmtType type) |
| 1349 | { |
| 1350 | switch(type) |
| 1351 | { |
| 1352 | case FmtUByte: return sizeof(ALubyte); |
| 1353 | case FmtShort: return sizeof(ALshort); |
| 1354 | case FmtFloat: return sizeof(ALfloat); |
| 1355 | case FmtDouble: return sizeof(ALdouble); |
| 1356 | case FmtMulaw: return sizeof(ALubyte); |
| 1357 | case FmtAlaw: return sizeof(ALubyte); |
| 1358 | } |
| 1359 | return 0; |
| 1360 | } |
| 1361 | ALuint ChannelsFromFmt(FmtChannels chans) |
| 1362 | { |
| 1363 | switch(chans) |
no outgoing calls
no test coverage detected