Exemplo n.º 1
0
Arquivo: context.go Projeto: ovr/goav
func (s *Context) AvFindDefaultStreamIndex() int {
	return int(C.av_find_default_stream_index((*C.struct_AVFormatContext)(s)))
}
Exemplo n.º 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)))
}