From a8a0dfd1b21de6c0facf965ab119833ff6f790bf Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 21 Jun 2016 23:08:53 +0100 Subject: Revert "Use make_shared<>." Support for this seems to vary wildly across DoM's build targets. Stuff that builds on 16.04 won't build on 14.04, for example. Seems to not be worth the hassle now. This reverts commit 5a5324ed3a381a86dfe0a6e3932c1d58fdcd596f. --- src/lib/audio_decoder_stream.cc | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/lib/audio_decoder_stream.cc') diff --git a/src/lib/audio_decoder_stream.cc b/src/lib/audio_decoder_stream.cc index 527610cdf..1bfc65871 100644 --- a/src/lib/audio_decoder_stream.cc +++ b/src/lib/audio_decoder_stream.cc @@ -28,7 +28,6 @@ #include "log.h" #include "audio_content.h" #include "compose.hpp" -#include #include #include "i18n.h" @@ -40,7 +39,6 @@ using std::min; using std::max; using boost::optional; using boost::shared_ptr; -using boost::make_shared; AudioDecoderStream::AudioDecoderStream (shared_ptr content, AudioStreamPtr stream, Decoder* decoder, bool fast, shared_ptr log) : _content (content) @@ -58,7 +56,7 @@ AudioDecoderStream::AudioDecoderStream (shared_ptr content, void AudioDecoderStream::reset_decoded () { - _decoded = ContentAudio (make_shared (_stream->channels(), 0), 0); + _decoded = ContentAudio (shared_ptr (new AudioBuffers (_stream->channels(), 0)), 0); } ContentAudio @@ -120,7 +118,7 @@ AudioDecoderStream::get (Frame frame, Frame length, bool accurate) Frame const to_return = max ((Frame) 0, min (available, length)); /* Copy our data to the output */ - shared_ptr out = make_shared (_decoded.audio->channels(), to_return); + shared_ptr out (new AudioBuffers (_decoded.audio->channels(), to_return)); out->copy_from (_decoded.audio.get(), to_return, decoded_offset, 0); Frame const remaining = max ((Frame) 0, available - to_return); @@ -159,7 +157,7 @@ AudioDecoderStream::audio (shared_ptr data, ContentTime time Frame const delta_frames = delta.frames_round (frame_rate); if (delta_frames > 0) { /* This data comes after the seek time. Pad the data with some silence. */ - shared_ptr padded = make_shared (data->channels(), data->frames() + delta_frames); + shared_ptr padded (new AudioBuffers (data->channels(), data->frames() + delta_frames)); padded->make_silent (); padded->copy_from (data.get(), data->frames(), 0, delta_frames); data = padded; @@ -174,7 +172,7 @@ AudioDecoderStream::audio (shared_ptr data, ContentTime time */ return; } - shared_ptr trimmed = make_shared (data->channels(), to_keep); + shared_ptr trimmed (new AudioBuffers (data->channels(), to_keep)); trimmed->copy_from (data.get(), to_keep, to_discard, 0); data = trimmed; time += ContentTime::from_frames (to_discard, frame_rate); -- cgit v1.2.3