OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 SERVICES_MEDIA_AUDIO_PLATFORM_GENERIC_MIXERS_POINT_SAMPLER_H_ |
| 6 #define SERVICES_MEDIA_AUDIO_PLATFORM_GENERIC_MIXERS_POINT_SAMPLER_H_ |
| 7 |
| 8 #include "mojo/services/media/common/interfaces/media_types.mojom.h" |
| 9 #include "services/media/audio/platform/generic/mixer.h" |
| 10 |
| 11 namespace mojo { |
| 12 namespace media { |
| 13 namespace audio { |
| 14 namespace mixers { |
| 15 |
| 16 class PointSampler : public Mixer { |
| 17 public: |
| 18 static MixerPtr Select(const LpcmMediaTypeDetailsPtr& src_format, |
| 19 const LpcmMediaTypeDetailsPtr& dst_format); |
| 20 }; |
| 21 |
| 22 } // namespace mixers |
| 23 } // namespace audio |
| 24 } // namespace media |
| 25 } // namespace mojo |
| 26 |
| 27 #endif // SERVICES_MEDIA_AUDIO_PLATFORM_GENERIC_MIXERS_POINT_SAMPLER_H_ |
OLD | NEW |