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 273f2fb8f4
commit 1b5b861735

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
}