| Index: chromecast/media/cma/backend/alsa/audio_decoder_alsa.h
|
| diff --git a/chromecast/media/cma/backend/alsa/audio_decoder_alsa.h b/chromecast/media/cma/backend/alsa/audio_decoder_alsa.h
|
| index 231eed0891ff6086ebc4aa205b2940ee6bec6e82..e0188605d73c2f173e0df66263c644a90f8bfb4f 100644
|
| --- a/chromecast/media/cma/backend/alsa/audio_decoder_alsa.h
|
| +++ b/chromecast/media/cma/backend/alsa/audio_decoder_alsa.h
|
| @@ -74,12 +74,12 @@ class AudioDecoderAlsa : public MediaPipelineBackend::AudioDecoder,
|
| bool error_;
|
|
|
| AudioConfig config_;
|
| - scoped_ptr<CastAudioDecoder> decoder_;
|
| + std::unique_ptr<CastAudioDecoder> decoder_;
|
|
|
| int64_t current_pts_;
|
| int64_t last_buffer_pts_;
|
|
|
| - scoped_ptr<StreamMixerAlsaInput> mixer_input_;
|
| + std::unique_ptr<StreamMixerAlsaInput> mixer_input_;
|
| RenderingDelay last_known_delay_;
|
| float volume_multiplier_;
|
|
|
|
|