blob: 1394b2a6f56e0d95c3ca38abea37f61566f4c0c2 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
|
// 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 CHROME_BROWSER_CHROMEOS_AUDIO_HANDLER_H_
#define CHROME_BROWSER_CHROMEOS_AUDIO_HANDLER_H_
#include "base/scoped_ptr.h"
#include "base/singleton.h"
namespace chromeos {
class PulseAudioMixer;
class AudioHandler {
public:
static AudioHandler* instance() {
return Singleton<AudioHandler>::get();
}
// Get volume level in our internal 0-100% range, 0 being pure silence.
// Volume may go above 100% if another process changes PulseAudio's volume.
// Returns default of 0 on error. This function will block until the volume
// is retrieved or fails. Blocking call.
double GetVolumePercent();
// Set volume level from 0-100%. Volumes above 100% are OK and boost volume,
// although clipping will occur more at higher volumes. Volume gets quieter
// as the percentage gets lower, and then switches to silence at 0%.
void SetVolumePercent(double volume_percent);
// Adust volume up (positive percentage) or down (negative percentage),
// capping at 100%. GetVolumePercent() will be accurate after this
// blocking call.
void AdjustVolumeByPercent(double adjust_by_percent);
// Just returns true if mute, false if not or an error occurred.
// Blocking call.
bool IsMute();
// Mutes all audio. Non-blocking call.
void SetMute(bool do_mute);
private:
// Defines the delete on exit Singleton traits we like. Best to have this
// and constructor/destructor private as recommended for Singletons.
friend struct DefaultSingletonTraits<AudioHandler>;
void OnMixerInitialized(bool success);
AudioHandler();
virtual ~AudioHandler();
bool VerifyMixerConnection();
// Conversion between our internal scaling (0-100%) and decibels.
static double VolumeDbToPercent(double volume_db);
static double PercentToVolumeDb(double volume_percent);
scoped_ptr<PulseAudioMixer> mixer_;
bool connected_;
int reconnect_tries_;
DISALLOW_COPY_AND_ASSIGN(AudioHandler);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_AUDIO_HANDLER_H_
|