예제 #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))
}