Make callers of CommandLine use it via the base:: namespace.
[chromium-blink-merge.git] / media / audio / audio_output_resampler.h
blob4c7be29830ecebf6ac12c2150c59a0145c4d444b
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef MEDIA_AUDIO_AUDIO_OUTPUT_RESAMPLER_H_
6 #define MEDIA_AUDIO_AUDIO_OUTPUT_RESAMPLER_H_
8 #include <map>
10 #include "base/basictypes.h"
11 #include "base/memory/ref_counted.h"
12 #include "base/time/time.h"
13 #include "media/audio/audio_io.h"
14 #include "media/audio/audio_manager.h"
15 #include "media/audio/audio_output_dispatcher.h"
16 #include "media/audio/audio_parameters.h"
18 namespace media {
20 class OnMoreDataConverter;
22 // AudioOutputResampler is a browser-side resampling and buffering solution
23 // which ensures audio data is always output at given parameters. See the
24 // AudioConverter class for details on the conversion process.
26 // AOR works by intercepting the AudioSourceCallback provided to StartStream()
27 // and redirecting it through an AudioConverter instance. |total_bytes_delay|
28 // is adjusted for buffer delay caused by the conversion process.
30 // AOR will automatically fall back from AUDIO_PCM_LOW_LATENCY to
31 // AUDIO_PCM_LINEAR if the output device fails to open at the requested output
32 // parameters.
34 // TODO(dalecurtis): Ideally the low latency path will be as reliable as the
35 // high latency path once we have channel mixing and support querying for the
36 // hardware's configured bit depth. Monitor the UMA stats for fallback and
37 // remove fallback support once it's stable. http://crbug.com/148418
38 class MEDIA_EXPORT AudioOutputResampler : public AudioOutputDispatcher {
39 public:
40 AudioOutputResampler(AudioManager* audio_manager,
41 const AudioParameters& input_params,
42 const AudioParameters& output_params,
43 const std::string& output_device_id,
44 const base::TimeDelta& close_delay);
46 // AudioOutputDispatcher interface.
47 bool OpenStream() override;
48 bool StartStream(AudioOutputStream::AudioSourceCallback* callback,
49 AudioOutputProxy* stream_proxy) override;
50 void StopStream(AudioOutputProxy* stream_proxy) override;
51 void StreamVolumeSet(AudioOutputProxy* stream_proxy, double volume) override;
52 void CloseStream(AudioOutputProxy* stream_proxy) override;
53 void Shutdown() override;
55 private:
56 friend class base::RefCountedThreadSafe<AudioOutputResampler>;
57 ~AudioOutputResampler() override;
59 // Converts low latency based output parameters into high latency
60 // appropriate output parameters in error situations.
61 void SetupFallbackParams();
63 // Used to initialize and reinitialize |dispatcher_|.
64 void Initialize();
66 // Dispatcher to proxy all AudioOutputDispatcher calls too.
67 scoped_refptr<AudioOutputDispatcher> dispatcher_;
69 // Map of outstanding OnMoreDataConverter objects. A new object is created
70 // on every StartStream() call and destroyed on CloseStream().
71 typedef std::map<AudioOutputProxy*, OnMoreDataConverter*> CallbackMap;
72 CallbackMap callbacks_;
74 // Used by AudioOutputDispatcherImpl; kept so we can reinitialize on the fly.
75 base::TimeDelta close_delay_;
77 // AudioParameters used to setup the output stream.
78 AudioParameters output_params_;
80 // Whether any streams have been opened through |dispatcher_|, if so we can't
81 // fallback on future OpenStream() failures.
82 bool streams_opened_;
84 DISALLOW_COPY_AND_ASSIGN(AudioOutputResampler);
87 } // namespace media
89 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_RESAMPLER_H_