13
0

Replace boost::shared_array<T> with std::shared_ptr<T[]>

This commit is contained in:
Alejandro Domínguez 2024-08-26 07:29:47 +02:00 committed by Robin Gareus
parent a3d4888be3
commit 5223b176f3
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
14 changed files with 7 additions and 29 deletions

View File

@ -24,8 +24,6 @@
#include <memory>
#include <boost/shared_array.hpp>
#include <time.h>
#include <glibmm/threads.h>
@ -107,8 +105,8 @@ class LIBARDOUR_API AudioSource : virtual public Source, public ARDOUR::AudioRea
thread, or a lock around calls that use them.
*/
static std::vector<boost::shared_array<Sample> > _mixdown_buffers;
static std::vector<boost::shared_array<gain_t> > _gain_buffers;
static std::vector<std::shared_ptr<Sample[]> > _mixdown_buffers;
static std::vector<std::shared_ptr<gain_t[]> > _gain_buffers;
static Glib::Threads::Mutex _level_buffer_lock;
std::string _peakpath;

View File

@ -20,8 +20,6 @@
#include <memory>
#include <boost/shared_array.hpp>
#include "ardour/types.h"
#include "ardour/processor.h"
@ -67,8 +65,8 @@ private:
sampleoffset_t _roff, _woff;
bool _pending_flush;
typedef std::vector<boost::shared_array<Sample> > AudioDlyBuf;
typedef std::vector<std::shared_ptr<MidiBuffer> > MidiDlyBuf;
typedef std::vector<std::shared_ptr<Sample[]>> AudioDlyBuf;
typedef std::vector<std::shared_ptr<MidiBuffer>> MidiDlyBuf;
AudioDlyBuf _buf;
MidiDlyBuf _midi_buf;

View File

@ -362,7 +362,7 @@ DelayLine::allocate_pending_buffers (samplecnt_t signal_delay, ChanCount const&
AudioDlyBuf pending_buf;
for (uint32_t i = 0; i < cc.n_audio (); ++i) {
boost::shared_array<Sample> b (new Sample[rbs]);
std::shared_ptr<Sample[]> b (new Sample[rbs]);
pending_buf.push_back (b);
memset (b.get (), 0, rbs * sizeof (Sample));
}

View File

@ -40,8 +40,6 @@
#include "pbd/gstdio_compat.h"
#include <glibmm.h>
#include <boost/shared_array.hpp>
#include "pbd/basename.h"
#include "pbd/convert.h"
@ -266,10 +264,10 @@ write_audio_data_to_new_files (ImportableSource* source, ImportStatus& status,
}
std::unique_ptr<float[]> data(new float[nframes * channels]);
vector<boost::shared_array<Sample> > channel_data;
vector<std::shared_ptr<Sample[]> > channel_data;
for (uint32_t n = 0; n < channels; ++n) {
channel_data.push_back(boost::shared_array<Sample>(new Sample[nframes]));
channel_data.push_back(std::shared_ptr<Sample[]>(new Sample[nframes]));
}
float gain = 1;

View File

@ -23,8 +23,6 @@
#include <cstdint>
#include <memory>
#include <boost/shared_array.hpp>
#include "canvas/visibility.h"
#include "canvas/item.h"

View File

@ -21,8 +21,6 @@
#include <iostream>
#include <vector>
#include <boost/shared_array.hpp>
//#include <midi++/types.h>
namespace MIDI {
typedef unsigned char byte;

View File

@ -21,8 +21,6 @@
#include <iostream>
#include <vector>
#include <boost/shared_array.hpp>
//#include <midi++/types.h>
namespace MIDI {
typedef unsigned char byte;

View File

@ -35,7 +35,6 @@
#include <sys/time.h>
#include <errno.h>
#include <boost/shared_array.hpp>
#include <glibmm/miscutils.h>
#include "midi++/types.h"

View File

@ -22,8 +22,6 @@
#include <iostream>
#include <vector>
#include <boost/shared_array.hpp>
//#include <midi++/types.h>
namespace MIDI {
typedef unsigned char byte;

View File

@ -25,7 +25,6 @@
#include <cerrno>
#include <sigc++/sigc++.h>
#include <boost/shared_array.hpp>
#include "pbd/failed_constructor.h"

View File

@ -21,8 +21,6 @@
#include <iostream>
#include <vector>
#include <boost/shared_array.hpp>
//#include <midi++/types.h>
namespace MIDI {
typedef unsigned char byte;

View File

@ -21,8 +21,6 @@
#include <iostream>
#include <vector>
#include <boost/shared_array.hpp>
//#include <midi++/types.h>
namespace MIDI {
typedef unsigned char byte;

View File

@ -21,7 +21,6 @@
#include <cerrno>
#include <sigc++/sigc++.h>
#include <boost/shared_array.hpp>
#include "pbd/failed_constructor.h"

View File

@ -29,7 +29,6 @@
#include <sys/time.h>
#include <errno.h>
#include <boost/shared_array.hpp>
#include <glibmm/miscutils.h>
#include "midi++/types.h"