| OLD | NEW |
| (Empty) | |
| 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. |
| 4 |
| 5 #ifndef MEDIA_BASE_RTC_AUDIO_RENDERER_H_ |
| 6 #define MEDIA_BASE_RTC_AUDIO_RENDERER_H_ |
| 7 |
| 8 #include "base/memory/ref_counted.h" |
| 9 #include "media/base/media_export.h" |
| 10 |
| 11 namespace media { |
| 12 |
| 13 class MEDIA_EXPORT RtcAudioRenderer |
| 14 : public base::RefCountedThreadSafe<RtcAudioRenderer> { |
| 15 public: |
| 16 // Start audio decoding and rendering at the current playback rate. |
| 17 virtual void Play() = 0; |
| 18 |
| 19 // Temporarily suspend decoding and rendering audio. |
| 20 virtual void Pause() = 0; |
| 21 |
| 22 // Stop all operations in preparation for being deleted. |
| 23 virtual void Stop() = 0; |
| 24 |
| 25 // Sets the output volume. |
| 26 virtual void SetVolume(float volume) = 0; |
| 27 |
| 28 protected: |
| 29 friend class base::RefCountedThreadSafe<RtcAudioRenderer>; |
| 30 |
| 31 RtcAudioRenderer(); |
| 32 virtual ~RtcAudioRenderer(); |
| 33 |
| 34 private: |
| 35 DISALLOW_COPY_AND_ASSIGN(RtcAudioRenderer); |
| 36 }; |
| 37 |
| 38 } // namespace media |
| 39 |
| 40 #endif // MEDIA_BASE_AUDIO_RENDERER_H_ |
| OLD | NEW |