Added support for logging the SSRC corresponding to AudioPlayout events.
To do this, the logging of this event was moved from the ACM to VoiceEngine Channel. A new LogAudioPlayoutEvent function was added on the RtcEventLog interface, and the LogDebugEvent function was removed since it is no longer being used. BUG=webrtc:4741 R=henrik.lundin@webrtc.org, henrikg@webrtc.org, kwiberg@webrtc.org, stefan@webrtc.org, terelius@webrtc.org Review URL: https://codereview.webrtc.org/1340283002 . Cr-Commit-Position: refs/heads/master@{#9972}
This commit is contained in:
@ -29,7 +29,6 @@ struct WebRtcRTPHeader;
|
||||
class AudioDecoder;
|
||||
class AudioEncoder;
|
||||
class AudioFrame;
|
||||
class RtcEventLog;
|
||||
class RTPFragmentationHeader;
|
||||
|
||||
#define WEBRTC_10MS_PCM_AUDIO 960 // 16 bits super wideband 48 kHz
|
||||
@ -83,16 +82,11 @@ class AudioCodingModule {
|
||||
|
||||
public:
|
||||
struct Config {
|
||||
Config()
|
||||
: id(0),
|
||||
neteq_config(),
|
||||
clock(Clock::GetRealTimeClock()),
|
||||
event_log(nullptr) {}
|
||||
Config() : id(0), neteq_config(), clock(Clock::GetRealTimeClock()) {}
|
||||
|
||||
int id;
|
||||
NetEq::Config neteq_config;
|
||||
Clock* clock;
|
||||
RtcEventLog* event_log;
|
||||
};
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user