예제 #1
0
파일: avformat.go 프로젝트: ovr/goav
func (f *InputFormat) AvRegisterInputFormat() {
	C.av_register_input_format((*C.struct_AVInputFormat)(f))
}
예제 #2
0
파일: avformat.go 프로젝트: hyhy01/goav
//void av_register_input_format (AVInputFormat *format)
func Av_register_input_format(f *AVInputFormat) {
	C.av_register_input_format((*C.struct_AVInputFormat)(f))
}