예제 #1
0
파일: context.go 프로젝트: ovr/goav
func (s *Context) AvFindDefaultStreamIndex() int {
	return int(C.av_find_default_stream_index((*C.struct_AVFormatContext)(s)))
}
예제 #2
0
파일: avformat.go 프로젝트: hyhy01/goav
//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)))
}