Esempio n. 1
0
func (l *Link) Channels() int {
	return int(C.avfilter_link_get_channels(l.CAVFilterLink))
}
Esempio n. 2
0
File: avfilter.go Progetto: 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)))
}