Update talk to 58113193 together with https://webrtc-codereview.appspot.com/5309005/.
R=mallinath@webrtc.org, niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/5719004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5274 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@@ -191,10 +191,12 @@ template <class Base> class RtpHelper : public Base {
|
||||
return true;
|
||||
}
|
||||
void set_playout(bool playout) { playout_ = playout; }
|
||||
virtual void OnPacketReceived(talk_base::Buffer* packet) {
|
||||
virtual void OnPacketReceived(talk_base::Buffer* packet,
|
||||
const talk_base::PacketTime& packet_time) {
|
||||
rtp_packets_.push_back(std::string(packet->data(), packet->length()));
|
||||
}
|
||||
virtual void OnRtcpReceived(talk_base::Buffer* packet) {
|
||||
virtual void OnRtcpReceived(talk_base::Buffer* packet,
|
||||
const talk_base::PacketTime& packet_time) {
|
||||
rtcp_packets_.push_back(std::string(packet->data(), packet->length()));
|
||||
}
|
||||
virtual void OnReadyToSend(bool ready) {
|
||||
@@ -776,6 +778,8 @@ class FakeVoiceEngine : public FakeBaseEngine {
|
||||
|
||||
bool SetLocalMonitor(bool enable) { return true; }
|
||||
|
||||
bool StartAecDump(FILE* file) { return false; }
|
||||
|
||||
bool RegisterProcessor(uint32 ssrc, VoiceProcessor* voice_processor,
|
||||
MediaProcessorDirection direction) {
|
||||
if (direction == MPD_RX) {
|
||||
|
||||
Reference in New Issue
Block a user