MCPcopy Create free account
hub / github.com/LancePutnam/Gamma / toString

Method toString

src/SoundFile.cpp:216–224  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

214}
215
216const 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}
225const char * SoundFile::toString(EncodingType v){
226 #define CS(x) case x: return #x;
227 switch(v){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected