Exemple #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))
}
Exemple #2
0
//Wipe the packet.
func (p *Packet) AvPacketUnref() {
	C.av_packet_unref((*C.struct_AVPacket)(p))
}
Exemple #3
0
func (this *Packet) Free() {
	C.av_packet_unref(&this.avPacket)
}