revid/geovision.go: wrote Read method implementation

This commit is contained in:
Saxon 2019-11-04 19:43:02 +10:30
parent ce8dc9a4b3
commit 5afad9c5aa
1 changed files with 4 additions and 0 deletions

View File

@ -253,3 +253,7 @@ func (g *GeoVision) Stop() error {
return nil
}
func (g *GeoVision) Read(p []byte) (int, error) {
return g.rtpClt.Read(p)
}