示例#1
0
func (l *Link) Channels() int {
	return int(C.avfilter_link_get_channels(l.CAVFilterLink))
}
示例#2
0
文件: avfilter.go 项目: ovr/goav
//Get the number of channels of a link.
func AvfilterLinkGetChannels(l *Link) int {
	return int(C.avfilter_link_get_channels((*C.struct_AVFilterLink)(l)))
}