예제 #1
0
//Wipe the packet.
//void 	av_packet_unref (AVPacket *pkt)
func Av_packet_unref(p *AVPacket) {
	C.av_packet_unref((*C.struct_AVPacket)(p))
}
예제 #2
0
파일: packet.go 프로젝트: gale320/goav
//Wipe the packet.
func (p *Packet) AvPacketUnref() {
	C.av_packet_unref((*C.struct_AVPacket)(p))
}
예제 #3
0
파일: packet.go 프로젝트: jasonmoo/gmf
func (this *Packet) Free() {
	C.av_packet_unref(&this.avPacket)
}