コード例 #1
0
ファイル: avcodec.go プロジェクト: hbdlb/goav
//Register the codec codec and initialize libavcodec.
func (c *Codec) AvcodecRegister() {
	C.avcodec_register((*C.struct_AVCodec)(c))
}
コード例 #2
0
ファイル: avcodec.go プロジェクト: stephenwithav/goav
//Register the codec codec and initialize libavcodec.
//void 	avcodec_register (AVCodec *codec)
func Avcodec_register(c *AVCodec) {
	C.avcodec_register((*C.struct_AVCodec)(c))
}