Esempio n. 1
0
func (this *Frame) Unref() {
	C.av_frame_unref(this.avFrame)
}
Esempio n. 2
0
func (f *Frame) Unref() {
	C.av_frame_unref(f.CAVFrame)
}
Esempio n. 3
0
//void av_frame_unref (AVFrame *frame)
//Unreference all the buffers referenced by frame and reset the frame fields.
func Av_frame_unref(f *AVFrame) {
	cf := (*C.struct_AVFrame)(unsafe.Pointer(f))
	C.av_frame_unref(cf)
}