Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Side by Side Diff: chromecast/media/cma/backend/audio_pipeline_device.h

Issue 837453003: Chromecast: virtual/override cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed a few spots Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CHROMECAST_MEDIA_CMA_BACKEND_AUDIO_PIPELINE_DEVICE_H_ 5 #ifndef CHROMECAST_MEDIA_CMA_BACKEND_AUDIO_PIPELINE_DEVICE_H_
6 #define CHROMECAST_MEDIA_CMA_BACKEND_AUDIO_PIPELINE_DEVICE_H_ 6 #define CHROMECAST_MEDIA_CMA_BACKEND_AUDIO_PIPELINE_DEVICE_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "chromecast/media/cma/backend/media_component_device.h" 9 #include "chromecast/media/cma/backend/media_component_device.h"
10 10
11 namespace media { 11 namespace media {
12 class AudioDecoderConfig; 12 class AudioDecoderConfig;
13 } 13 }
14 14
15 namespace chromecast { 15 namespace chromecast {
16 namespace media { 16 namespace media {
17 class AudioPipelineDeviceClient; 17 class AudioPipelineDeviceClient;
18 18
19 class AudioPipelineDevice : public MediaComponentDevice { 19 class AudioPipelineDevice : public MediaComponentDevice {
20 public: 20 public:
21 AudioPipelineDevice(); 21 AudioPipelineDevice();
22 virtual ~AudioPipelineDevice(); 22 ~AudioPipelineDevice() override;
23 23
24 // Provide the audio configuration. 24 // Provide the audio configuration.
25 // Must be called before switching from |kStateUninitialized| to |kStateIdle|. 25 // Must be called before switching from |kStateUninitialized| to |kStateIdle|.
26 // Afterwards, this can be invoked any time the configuration changes. 26 // Afterwards, this can be invoked any time the configuration changes.
27 // Returns true if the configuration is a supported configuration. 27 // Returns true if the configuration is a supported configuration.
28 virtual bool SetConfig(const ::media::AudioDecoderConfig& config) = 0; 28 virtual bool SetConfig(const ::media::AudioDecoderConfig& config) = 0;
29 29
30 // Sets the volume multiplier. 30 // Sets the volume multiplier.
31 // The multiplier must be in the range [0.0, 1.0]. 31 // The multiplier must be in the range [0.0, 1.0].
32 virtual void SetStreamVolumeMultiplier(float multiplier) = 0; 32 virtual void SetStreamVolumeMultiplier(float multiplier) = 0;
33 33
34 private: 34 private:
35 DISALLOW_COPY_AND_ASSIGN(AudioPipelineDevice); 35 DISALLOW_COPY_AND_ASSIGN(AudioPipelineDevice);
36 }; 36 };
37 37
38 } // namespace media 38 } // namespace media
39 } // namespace chromecast 39 } // namespace chromecast
40 40
41 #endif // CHROMECAST_MEDIA_CMA_BACKEND_AUDIO_PIPELINE_DEVICE_H_ 41 #endif // CHROMECAST_MEDIA_CMA_BACKEND_AUDIO_PIPELINE_DEVICE_H_
OLDNEW
« no previous file with comments | « chromecast/media/cdm/browser_cdm_cast.h ('k') | chromecast/media/cma/backend/audio_video_pipeline_device_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698