blob: 32f09a8811f8652df05f55ebb5f171fb6662acd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_AUDIO_LINUX_AUDIO_MANAGER_LINUX_H_
#define MEDIA_AUDIO_LINUX_AUDIO_MANAGER_LINUX_H_
#include <map>
#include "base/lock.h"
#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
#include "base/thread.h"
#include "media/audio/audio_output.h"
class AlsaPcmOutputStream;
class AlsaWrapper;
class AudioManagerLinux : public AudioManager {
public:
AudioManagerLinux();
// Call before using a newly created AudioManagerLinux instance.
virtual void Init();
// Implementation of AudioManager.
virtual bool HasAudioDevices();
virtual AudioOutputStream* MakeAudioStream(Format format, int channels,
int sample_rate,
char bits_per_sample);
virtual void MuteAll();
virtual void UnMuteAll();
virtual void ReleaseStream(AlsaPcmOutputStream* stream);
protected:
// Friend function for invoking the destructor at exit.
friend void DestroyAudioManagerLinux(void*);
virtual ~AudioManagerLinux();
private:
// Thread used to interact with AudioOutputStreams created by this
// audio manger.
base::Thread audio_thread_;
scoped_ptr<AlsaWrapper> wrapper_;
Lock lock_;
std::map<AlsaPcmOutputStream*, scoped_refptr<AlsaPcmOutputStream> >
active_streams_;
bool initialized_;
DISALLOW_COPY_AND_ASSIGN(AudioManagerLinux);
};
#endif // MEDIA_AUDIO_LINUX_AUDIO_MANAGER_LINUX_H_
|