This commit is contained in:
nareix 2016-06-29 17:35:03 +08:00
parent 32f53b873e
commit a310437804

14
fake/fake.go Normal file
View File

@ -0,0 +1,14 @@
package fake
import (
"github.com/nareix/av"
)
type CodecData struct {
Typ av.CodecType
}
func (self CodecData) Type() av.CodecType {
return self.Typ
}