示例#1
0
文件: avformat.go 项目: ovr/goav
func (f *OutputFormat) AvRegisterOutputFormat() {
	C.av_register_output_format((*C.struct_AVOutputFormat)(f))
}
示例#2
0
文件: avformat.go 项目: hyhy01/goav
//void av_register_output_format (AVOutputFormat *format)
func Av_register_output_format(f *AVOutputFormat) {
	C.av_register_output_format((*C.struct_AVOutputFormat)(f))
}