audio: Bug fix: Compile error on the tests

Updates #1630
This commit is contained in:
Hajime Hoshi 2021-05-04 22:10:44 +09:00
parent 29eade9b4a
commit bcf8ef85b6

View File

@ -68,6 +68,12 @@ func (c *dummyReaderContext) MaxBufferSize() int {
return 48000 * channelNum * bitDepthInBytes / 4
}
func (c *dummyReaderContext) Suspend() {
}
func (c *dummyReaderContext) Resume() {
}
func (c *dummyReaderContext) Close() error {
return nil
}