mirror of https://bitbucket.org/ausocean/av.git
8 lines
224 B
Go
8 lines
224 B
Go
|
// startAudioDevice is used to start capturing audio from an audio device
|
||
|
// TODO: Implement on Windows.
|
||
|
package revid
|
||
|
|
||
|
func (r *Revid) startAudioDevice() (func() error, error) {
|
||
|
panic("Audio not implemented on Windows")
|
||
|
}
|