| // Copyright 2015 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CHROMECAST_MEDIA_CMA_BACKEND_AUDIO_DECODER_DEFAULT_H_ |
| #define CHROMECAST_MEDIA_CMA_BACKEND_AUDIO_DECODER_DEFAULT_H_ |
| |
| #include <stdint.h> |
| |
| #include "base/macros.h" |
| #include "base/memory/weak_ptr.h" |
| #include "chromecast/public/media/media_pipeline_backend.h" |
| |
| namespace chromecast { |
| namespace media { |
| |
| class AudioDecoderDefault : public MediaPipelineBackend::AudioDecoder { |
| public: |
| AudioDecoderDefault(); |
| ~AudioDecoderDefault() override; |
| |
| int64_t last_push_pts() const { return last_push_pts_; } |
| |
| // MediaPipelineBackend::AudioDecoder implementation: |
| void SetDelegate(Delegate* delegate) override; |
| MediaPipelineBackend::BufferStatus PushBuffer( |
| CastDecoderBuffer* buffer) override; |
| void GetStatistics(Statistics* statistics) override; |
| bool SetConfig(const AudioConfig& config) override; |
| bool SetVolume(float multiplier) override; |
| RenderingDelay GetRenderingDelay() override; |
| |
| private: |
| void OnEndOfStream(); |
| |
| Delegate* delegate_; |
| int64_t last_push_pts_; |
| base::WeakPtrFactory<AudioDecoderDefault> weak_factory_; |
| |
| DISALLOW_COPY_AND_ASSIGN(AudioDecoderDefault); |
| }; |
| |
| } // namespace media |
| } // namespace chromecast |
| |
| #endif // CHROMECAST_MEDIA_CMA_BACKEND_AUDIO_DECODER_DEFAULT_H_ |