Skip to content

Commit

Permalink
audio: Bug fix: Compile error on the tests
Browse files Browse the repository at this point in the history
Updates #1630
  • Loading branch information
hajimehoshi committed May 4, 2021
1 parent 273f2fb commit 1b5b861
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions audio/export_test.go
Expand Up @@ -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
}
Expand Down

0 comments on commit 1b5b861

Please sign in to comment.