Bugfix
TBR Review URL: https://webrtc-codereview.appspot.com/570007 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2214 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
80f7ac23b0
commit
fd3fef514b
@ -41,7 +41,7 @@ RtpRtcp* RtpRtcp::CreateRtpRtcp(const RtpRtcp::Configuration& configuration) {
|
|||||||
return new ModuleRtpRtcpImpl(configuration);
|
return new ModuleRtpRtcpImpl(configuration);
|
||||||
} else {
|
} else {
|
||||||
RtpRtcp::Configuration configuration_copy;
|
RtpRtcp::Configuration configuration_copy;
|
||||||
memcpy(&configuration_copy, &configuration_copy,
|
memcpy(&configuration_copy, &configuration,
|
||||||
sizeof(RtpRtcp::Configuration));
|
sizeof(RtpRtcp::Configuration));
|
||||||
configuration_copy.clock = ModuleRTPUtility::GetSystemClock();
|
configuration_copy.clock = ModuleRTPUtility::GetSystemClock();
|
||||||
ModuleRtpRtcpImpl* rtp_rtcp_instance =
|
ModuleRtpRtcpImpl* rtp_rtcp_instance =
|
||||||
@ -484,7 +484,6 @@ WebRtc_Word32 ModuleRtpRtcpImpl::IncomingPacket(
|
|||||||
_id,
|
_id,
|
||||||
"IncomingPacket(packetLength:%u)",
|
"IncomingPacket(packetLength:%u)",
|
||||||
incomingPacketLength);
|
incomingPacketLength);
|
||||||
|
|
||||||
// minimum RTP is 12 bytes
|
// minimum RTP is 12 bytes
|
||||||
// minimum RTCP is 8 bytes (RTCP BYE)
|
// minimum RTCP is 8 bytes (RTCP BYE)
|
||||||
if (incomingPacketLength < 8 || incomingPacket == NULL) {
|
if (incomingPacketLength < 8 || incomingPacket == NULL) {
|
||||||
|
@ -93,6 +93,7 @@ ViEChannel::ViEChannel(WebRtc_Word32 channel_id,
|
|||||||
configuration.bitrate_observer = bitrate_observer;
|
configuration.bitrate_observer = bitrate_observer;
|
||||||
|
|
||||||
rtp_rtcp_.reset(RtpRtcp::CreateRtpRtcp(configuration));
|
rtp_rtcp_.reset(RtpRtcp::CreateRtpRtcp(configuration));
|
||||||
|
vie_receiver_.SetRtpRtcpModule(rtp_rtcp_.get());
|
||||||
}
|
}
|
||||||
|
|
||||||
WebRtc_Word32 ViEChannel::Init() {
|
WebRtc_Word32 ViEChannel::Init() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user