bugfix handleRtpPacket change packet to payload solve PCMU noise problem

This commit is contained in:
nareix 2016-06-22 22:27:04 +08:00
parent 4d441f030b
commit 06583889af

View File

@ -989,7 +989,7 @@ func (self *Stream) handleRtpPacket(packet []byte) (err error) {
default:
self.gotpkt = true
self.pkt.Data = packet
self.pkt.Data = payload
self.timestamp = timestamp
}