commit | 6d5d2480757a87c7f2fb40be88cfdeca419fc6a4 | [log] [tgz] |
---|---|---|
author | turaj@webrtc.org <turaj@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Sun Oct 06 04:47:28 2013 +0000 |
committer | turaj@webrtc.org <turaj@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Sun Oct 06 04:47:28 2013 +0000 |
tree | 2c1a9a1ee64a1376f7ce251ae377f2cbc4ed086e | |
parent | f31639612db2ceef9e16bd141b030ed0f57b3178 [diff] [blame] |
Wrap ACM2 code inside acm2 namespace. This gurantees that one ACM would not use components of others by accident. BUG= R=minyue@webrtc.org Review URL: https://webrtc-codereview.appspot.com/2344004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4933 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/audio_coding/main/acm2/nack.cc b/webrtc/modules/audio_coding/main/acm2/nack.cc index e26ad61..7265fe6 100644 --- a/webrtc/modules/audio_coding/main/acm2/nack.cc +++ b/webrtc/modules/audio_coding/main/acm2/nack.cc
@@ -19,6 +19,8 @@ namespace webrtc { +namespace acm2 { + namespace { const int kDefaultSampleRateKhz = 48; @@ -222,4 +224,6 @@ return sequence_numbers; } +} // namespace acm2 + } // namespace webrtc