コード例 #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)))
}