From b9863ce6ba3a8f208338b0d1f076c0b383bb3c56 Mon Sep 17 00:00:00 2001 From: "turaj@webrtc.org" Date: Sat, 10 May 2014 00:58:49 +0000 Subject: [PATCH] One of the NetEq methods needs to be virtual. BUG= R=andrew@webrtc.org Review URL: https://webrtc-codereview.appspot.com/20449004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6099 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/audio_coding/neteq4/neteq_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/audio_coding/neteq4/neteq_impl.h b/webrtc/modules/audio_coding/neteq4/neteq_impl.h index 5801d97ca..b8139acfe 100644 --- a/webrtc/modules/audio_coding/neteq4/neteq_impl.h +++ b/webrtc/modules/audio_coding/neteq4/neteq_impl.h @@ -334,7 +334,7 @@ class NetEqImpl : public webrtc::NetEq { EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); // Creates DecisionLogic object for the given mode. - void CreateDecisionLogic(NetEqPlayoutMode mode) + virtual void CreateDecisionLogic(NetEqPlayoutMode mode) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); const scoped_ptr buffer_level_filter_;