示例#1
0
文件: context.go 项目: ovr/goav
//Start playing a network-based stream (e.g.
func (s *Context) AvReadPlay() int {
	return int(C.av_read_play((*C.struct_AVFormatContext)(s)))
}
示例#2
0
文件: avformat.go 项目: hyhy01/goav
//int av_read_play (AVFormatContext *s)
//Start playing a network-based stream (e.g.
func Av_read_play(s *AVFormatContext) int {
	return int(C.av_read_play((*C.struct_AVFormatContext)(s)))
}