示例#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)
}