
We must remove dependency on Chromium, i.e. we can't use Chromium's base/logging.h. That means we need to define these macros in WebRTC also when doing Chromium builds. And this causes redefinition. * DISALLOW_ASSIGN -> RTC_DISALLOW_ASSIGN * DISALLOW_COPY_AND_ASSIGN -> RTC_DISALLOW_COPY_AND_ASSIGN * DISALLOW_IMPLICIT_CONSTRUCTORS -> RTC_DISALLOW_IMPLICIT_CONSTRUCTORS Related CL: https://codereview.webrtc.org/1335923002/ BUG=chromium:468375 NOTRY=true Review URL: https://codereview.webrtc.org/1345433002 Cr-Commit-Position: refs/heads/master@{#9953}
104 lines
2.9 KiB
C++
104 lines
2.9 KiB
C++
/*
|
|
* Copyright 2004 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef WEBRTC_SOUND_ALSASOUNDSYSTEM_H_
|
|
#define WEBRTC_SOUND_ALSASOUNDSYSTEM_H_
|
|
|
|
#include "webrtc/sound/alsasymboltable.h"
|
|
#include "webrtc/sound/soundsysteminterface.h"
|
|
#include "webrtc/base/constructormagic.h"
|
|
|
|
namespace rtc {
|
|
|
|
class AlsaStream;
|
|
class AlsaInputStream;
|
|
class AlsaOutputStream;
|
|
|
|
// Sound system implementation for ALSA, the predominant sound device API on
|
|
// Linux (but typically not used directly by applications anymore).
|
|
class AlsaSoundSystem : public SoundSystemInterface {
|
|
friend class AlsaStream;
|
|
friend class AlsaInputStream;
|
|
friend class AlsaOutputStream;
|
|
public:
|
|
static SoundSystemInterface *Create() {
|
|
return new AlsaSoundSystem();
|
|
}
|
|
|
|
AlsaSoundSystem();
|
|
|
|
virtual ~AlsaSoundSystem();
|
|
|
|
virtual bool Init();
|
|
virtual void Terminate();
|
|
|
|
virtual bool EnumeratePlaybackDevices(SoundDeviceLocatorList *devices);
|
|
virtual bool EnumerateCaptureDevices(SoundDeviceLocatorList *devices);
|
|
|
|
virtual bool GetDefaultPlaybackDevice(SoundDeviceLocator **device);
|
|
virtual bool GetDefaultCaptureDevice(SoundDeviceLocator **device);
|
|
|
|
virtual SoundOutputStreamInterface *OpenPlaybackDevice(
|
|
const SoundDeviceLocator *device,
|
|
const OpenParams ¶ms);
|
|
virtual SoundInputStreamInterface *OpenCaptureDevice(
|
|
const SoundDeviceLocator *device,
|
|
const OpenParams ¶ms);
|
|
|
|
virtual const char *GetName() const;
|
|
|
|
private:
|
|
bool IsInitialized() { return initialized_; }
|
|
|
|
bool EnumerateDevices(SoundDeviceLocatorList *devices,
|
|
bool capture_not_playback);
|
|
|
|
bool GetDefaultDevice(SoundDeviceLocator **device);
|
|
|
|
static size_t FrameSize(const OpenParams ¶ms);
|
|
|
|
template <typename StreamInterface>
|
|
StreamInterface *OpenDevice(
|
|
const SoundDeviceLocator *device,
|
|
const OpenParams ¶ms,
|
|
snd_pcm_stream_t type,
|
|
StreamInterface *(AlsaSoundSystem::*start_fn)(
|
|
snd_pcm_t *handle,
|
|
size_t frame_size,
|
|
int wait_timeout_ms,
|
|
int flags,
|
|
int freq));
|
|
|
|
SoundOutputStreamInterface *StartOutputStream(
|
|
snd_pcm_t *handle,
|
|
size_t frame_size,
|
|
int wait_timeout_ms,
|
|
int flags,
|
|
int freq);
|
|
|
|
SoundInputStreamInterface *StartInputStream(
|
|
snd_pcm_t *handle,
|
|
size_t frame_size,
|
|
int wait_timeout_ms,
|
|
int flags,
|
|
int freq);
|
|
|
|
const char *GetError(int err);
|
|
|
|
bool initialized_;
|
|
AlsaSymbolTable symbol_table_;
|
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(AlsaSoundSystem);
|
|
};
|
|
|
|
} // namespace rtc
|
|
|
|
#endif // WEBRTC_SOUND_ALSASOUNDSYSTEM_H_
|