コード例 #1
0
ファイル: avfilter.go プロジェクト: codesuki/go-libav
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)))
}