Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: webrtc/modules/audio_device/linux/audio_device_pulse_linux.cc

Issue 2818563003: Rename the webrtc_adm_linux* namespaces to webrtc::adm_linux* (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <assert.h> 11 #include <assert.h>
12 12
13 #include "webrtc/base/checks.h" 13 #include "webrtc/base/checks.h"
14 #include "webrtc/base/logging.h" 14 #include "webrtc/base/logging.h"
15 #include "webrtc/modules/audio_device/audio_device_config.h" 15 #include "webrtc/modules/audio_device/audio_device_config.h"
16 #include "webrtc/modules/audio_device/linux/audio_device_pulse_linux.h" 16 #include "webrtc/modules/audio_device/linux/audio_device_pulse_linux.h"
17 #include "webrtc/system_wrappers/include/event_wrapper.h" 17 #include "webrtc/system_wrappers/include/event_wrapper.h"
18 #include "webrtc/system_wrappers/include/trace.h" 18 #include "webrtc/system_wrappers/include/trace.h"
19 19
20 webrtc_adm_linux_pulse::PulseAudioSymbolTable PaSymbolTable; 20 webrtc::adm_linux_pulse::PulseAudioSymbolTable PaSymbolTable;
21 21
22 // Accesses Pulse functions through our late-binding symbol table instead of 22 // Accesses Pulse functions through our late-binding symbol table instead of
23 // directly. This way we don't have to link to libpulse, which means our binary 23 // directly. This way we don't have to link to libpulse, which means our binary
24 // will work on systems that don't have it. 24 // will work on systems that don't have it.
25 #define LATE(sym) \ 25 #define LATE(sym) \
26 LATESYM_GET(webrtc_adm_linux_pulse::PulseAudioSymbolTable, &PaSymbolTable, sym ) 26 LATESYM_GET(webrtc::adm_linux_pulse::PulseAudioSymbolTable, &PaSymbolTable, \
27 sym)
27 28
28 namespace webrtc 29 namespace webrtc
29 { 30 {
30 31
31 AudioDeviceLinuxPulse::AudioDeviceLinuxPulse(const int32_t id) : 32 AudioDeviceLinuxPulse::AudioDeviceLinuxPulse(const int32_t id) :
32 _ptrAudioBuffer(NULL), 33 _ptrAudioBuffer(NULL),
33 _timeEventRec(*EventWrapper::Create()), 34 _timeEventRec(*EventWrapper::Create()),
34 _timeEventPlay(*EventWrapper::Create()), 35 _timeEventPlay(*EventWrapper::Create()),
35 _recStartEvent(*EventWrapper::Create()), 36 _recStartEvent(*EventWrapper::Create()),
36 _playStartEvent(*EventWrapper::Create()), 37 _playStartEvent(*EventWrapper::Create()),
(...skipping 2948 matching lines...) Expand 10 before | Expand all | Expand 10 after
2985 2986
2986 // A bit change in keymap means a key is pressed 2987 // A bit change in keymap means a key is pressed
2987 for (i = 0; i < sizeof(szKey); i++) 2988 for (i = 0; i < sizeof(szKey); i++)
2988 state |= (szKey[i] ^ _oldKeyState[i]) & szKey[i]; 2989 state |= (szKey[i] ^ _oldKeyState[i]) & szKey[i];
2989 2990
2990 // Save old state 2991 // Save old state
2991 memcpy((char*)_oldKeyState, (char*)szKey, sizeof(_oldKeyState)); 2992 memcpy((char*)_oldKeyState, (char*)szKey, sizeof(_oldKeyState));
2992 return (state != 0); 2993 return (state != 0);
2993 } 2994 }
2994 } 2995 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698