| 214 | } |
| 215 | |
| 216 | const char * SoundFile::toString(Format v){ |
| 217 | #define CS(x) case x: return #x; |
| 218 | switch(v){ |
| 219 | CS(WAV) CS(AIFF) CS(AU) CS(RAW) |
| 220 | //CS(FLAC) |
| 221 | default: return ""; |
| 222 | } |
| 223 | #undef CS |
| 224 | } |
| 225 | const char * SoundFile::toString(EncodingType v){ |
| 226 | #define CS(x) case x: return #x; |
| 227 | switch(v){ |
nothing calls this directly
no outgoing calls
no test coverage detected