OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Audio rendering unit utilizing an AudioRendererSink to output data. | 5 // Audio rendering unit utilizing an AudioRendererSink to output data. |
6 // | 6 // |
7 // This class lives inside three threads during it's lifetime, namely: | 7 // This class lives inside three threads during it's lifetime, namely: |
8 // 1. Render thread | 8 // 1. Render thread |
9 // Where the object is created. | 9 // Where the object is created. |
10 // 2. Media thread (provided via constructor) | 10 // 2. Media thread (provided via constructor) |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 virtual ~AudioRendererImpl(); | 65 virtual ~AudioRendererImpl(); |
66 | 66 |
67 // AudioRenderer implementation. | 67 // AudioRenderer implementation. |
68 virtual void Initialize(DemuxerStream* stream, | 68 virtual void Initialize(DemuxerStream* stream, |
69 const PipelineStatusCB& init_cb, | 69 const PipelineStatusCB& init_cb, |
70 const StatisticsCB& statistics_cb, | 70 const StatisticsCB& statistics_cb, |
71 const base::Closure& underflow_cb, | 71 const base::Closure& underflow_cb, |
72 const TimeCB& time_cb, | 72 const TimeCB& time_cb, |
73 const base::Closure& ended_cb, | 73 const base::Closure& ended_cb, |
74 const PipelineStatusCB& error_cb) OVERRIDE; | 74 const PipelineStatusCB& error_cb) OVERRIDE; |
75 virtual void Play(const base::Closure& callback) OVERRIDE; | 75 virtual void Play() OVERRIDE; |
76 virtual void Pause(const base::Closure& callback) OVERRIDE; | 76 virtual void Pause() OVERRIDE; |
77 virtual void Flush(const base::Closure& callback) OVERRIDE; | 77 virtual void Flush(const base::Closure& callback) OVERRIDE; |
78 virtual void Stop(const base::Closure& callback) OVERRIDE; | 78 virtual void Stop(const base::Closure& callback) OVERRIDE; |
79 virtual void SetPlaybackRate(float rate) OVERRIDE; | 79 virtual void SetPlaybackRate(float rate) OVERRIDE; |
80 virtual void Preroll(base::TimeDelta time, | 80 virtual void Preroll(base::TimeDelta time, |
81 const PipelineStatusCB& cb) OVERRIDE; | 81 const PipelineStatusCB& cb) OVERRIDE; |
82 virtual void ResumeAfterUnderflow() OVERRIDE; | 82 virtual void ResumeAfterUnderflow() OVERRIDE; |
83 virtual void SetVolume(float volume) OVERRIDE; | 83 virtual void SetVolume(float volume) OVERRIDE; |
84 | 84 |
85 // Disables underflow support. When used, |state_| will never transition to | 85 // Disables underflow support. When used, |state_| will never transition to |
86 // kUnderflow resulting in Render calls that underflow returning 0 frames | 86 // kUnderflow resulting in Render calls that underflow returning 0 frames |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 | 276 |
277 // NOTE: Weak pointers must be invalidated before all other member variables. | 277 // NOTE: Weak pointers must be invalidated before all other member variables. |
278 base::WeakPtrFactory<AudioRendererImpl> weak_factory_; | 278 base::WeakPtrFactory<AudioRendererImpl> weak_factory_; |
279 | 279 |
280 DISALLOW_COPY_AND_ASSIGN(AudioRendererImpl); | 280 DISALLOW_COPY_AND_ASSIGN(AudioRendererImpl); |
281 }; | 281 }; |
282 | 282 |
283 } // namespace media | 283 } // namespace media |
284 | 284 |
285 #endif // MEDIA_FILTERS_AUDIO_RENDERER_IMPL_H_ | 285 #endif // MEDIA_FILTERS_AUDIO_RENDERER_IMPL_H_ |
OLD | NEW |