示例#1
0
文件: context.go 项目: ovr/goav
func (s *Context) AvFormatSetOpaque(o int) {
	C.av_format_set_opaque((*C.struct_AVFormatContext)(s), unsafe.Pointer(&o))
}
示例#2
0
文件: avformat.go 项目: hyhy01/goav
//void av_format_set_opaque (AVFormatContext *s, void *opaque)
func Av_format_set_opaque(s *AVFormatContext, o int) {
	C.av_format_set_opaque((*C.struct_AVFormatContext)(s), unsafe.Pointer(&o))
}