(self, params)
| 406 | return 'not compressed' |
| 407 | |
| 408 | def setparams(self, params): |
| 409 | nchannels, sampwidth, framerate, nframes, comptype, compname = params |
| 410 | self.setnchannels(nchannels) |
| 411 | self.setsampwidth(sampwidth) |
| 412 | self.setframerate(framerate) |
| 413 | self.setnframes(nframes) |
| 414 | self.setcomptype(comptype, compname) |
| 415 | |
| 416 | def getparams(self): |
| 417 | return _sunau_params(self.getnchannels(), self.getsampwidth(), |
nothing calls this directly
no test coverage detected