示例#1
0
文件: context.go 项目: ovr/goav
func (s *Context) AvFormatGetProbeScore() int {
	return int(C.av_format_get_probe_score((*C.struct_AVFormatContext)(s)))
}
示例#2
0
文件: avformat.go 项目: hyhy01/goav
//int av_format_get_probe_score (const AVFormatContext *s)
func Av_format_get_probe_score(s *AVFormatContext) int {
	return int(C.av_format_get_probe_score((*C.struct_AVFormatContext)(s)))
}