Example #1
0
File: context.go Project: ovr/goav
func (s *Context) AvFindDefaultStreamIndex() int {
	return int(C.av_find_default_stream_index((*C.struct_AVFormatContext)(s)))
}
Example #2
0
//int av_find_default_stream_index (AVFormatContext *s)
func Av_find_default_stream_index(s *AVFormatContext) int {
	return int(C.av_find_default_stream_index((*C.struct_AVFormatContext)(s)))
}