encoder/lame: use ReusableBuffer instead of AllocatedArray
This commit is contained in:
parent
44a0e21795
commit
953e3190ca
@ -262,7 +262,6 @@ endif
|
|||||||
|
|
||||||
libutil_a_SOURCES = \
|
libutil_a_SOURCES = \
|
||||||
src/util/ReusableArray.hxx \
|
src/util/ReusableArray.hxx \
|
||||||
src/util/AllocatedArray.hxx \
|
|
||||||
src/util/StringUtil.cxx src/util/StringUtil.hxx \
|
src/util/StringUtil.cxx src/util/StringUtil.hxx \
|
||||||
src/util/Tokenizer.cxx src/util/Tokenizer.hxx \
|
src/util/Tokenizer.cxx src/util/Tokenizer.hxx \
|
||||||
src/util/UriUtil.cxx src/util/UriUtil.hxx \
|
src/util/UriUtil.cxx src/util/UriUtil.hxx \
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#include "LameEncoderPlugin.hxx"
|
#include "LameEncoderPlugin.hxx"
|
||||||
#include "EncoderAPI.hxx"
|
#include "EncoderAPI.hxx"
|
||||||
#include "AudioFormat.hxx"
|
#include "AudioFormat.hxx"
|
||||||
#include "util/AllocatedArray.hxx"
|
#include "util/ReusableArray.hxx"
|
||||||
#include "util/Manual.hxx"
|
#include "util/Manual.hxx"
|
||||||
|
|
||||||
#include <lame/lame.h>
|
#include <lame/lame.h>
|
||||||
@ -40,8 +40,8 @@ struct LameEncoder final {
|
|||||||
|
|
||||||
lame_global_flags *gfp;
|
lame_global_flags *gfp;
|
||||||
|
|
||||||
Manual<AllocatedArray<unsigned char>> output_buffer;
|
Manual<ReusableArray<unsigned char, 32768>> output_buffer;
|
||||||
size_t output_buffer_length, output_buffer_position;
|
unsigned char *output_begin, *output_end;
|
||||||
|
|
||||||
LameEncoder():encoder(lame_encoder_plugin) {}
|
LameEncoder():encoder(lame_encoder_plugin) {}
|
||||||
|
|
||||||
@ -212,9 +212,7 @@ lame_encoder_open(Encoder *_encoder, AudioFormat &audio_format,
|
|||||||
}
|
}
|
||||||
|
|
||||||
encoder->output_buffer.Construct();
|
encoder->output_buffer.Construct();
|
||||||
|
encoder->output_begin = encoder->output_end = nullptr;
|
||||||
encoder->output_buffer_length = 0;
|
|
||||||
encoder->output_buffer_position = 0;
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -236,8 +234,7 @@ lame_encoder_write(Encoder *_encoder,
|
|||||||
LameEncoder *encoder = (LameEncoder *)_encoder;
|
LameEncoder *encoder = (LameEncoder *)_encoder;
|
||||||
const int16_t *src = (const int16_t*)data;
|
const int16_t *src = (const int16_t*)data;
|
||||||
|
|
||||||
assert(encoder->output_buffer_position ==
|
assert(encoder->output_begin == encoder->output_end);
|
||||||
encoder->output_buffer_length);
|
|
||||||
|
|
||||||
const unsigned num_frames =
|
const unsigned num_frames =
|
||||||
length / encoder->audio_format.GetFrameSize();
|
length / encoder->audio_format.GetFrameSize();
|
||||||
@ -246,9 +243,7 @@ lame_encoder_write(Encoder *_encoder,
|
|||||||
|
|
||||||
/* worst-case formula according to LAME documentation */
|
/* worst-case formula according to LAME documentation */
|
||||||
const size_t output_buffer_size = 5 * num_samples / 4 + 7200;
|
const size_t output_buffer_size = 5 * num_samples / 4 + 7200;
|
||||||
encoder->output_buffer->GrowDiscard(output_buffer_size);
|
const auto output_buffer = encoder->output_buffer->Get(output_buffer_size);
|
||||||
|
|
||||||
const auto output_buffer = encoder->output_buffer->begin();
|
|
||||||
|
|
||||||
/* this is for only 16-bit audio */
|
/* this is for only 16-bit audio */
|
||||||
|
|
||||||
@ -264,8 +259,8 @@ lame_encoder_write(Encoder *_encoder,
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
encoder->output_buffer_length = (size_t)bytes_out;
|
encoder->output_begin = output_buffer;
|
||||||
encoder->output_buffer_position = 0;
|
encoder->output_end = output_buffer + bytes_out;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -274,20 +269,15 @@ lame_encoder_read(Encoder *_encoder, void *dest, size_t length)
|
|||||||
{
|
{
|
||||||
LameEncoder *encoder = (LameEncoder *)_encoder;
|
LameEncoder *encoder = (LameEncoder *)_encoder;
|
||||||
|
|
||||||
assert(encoder->output_buffer_position <=
|
const auto begin = encoder->output_begin;
|
||||||
encoder->output_buffer_length);
|
assert(begin <= encoder->output_end);
|
||||||
|
const size_t remainning = encoder->output_end - begin;
|
||||||
const size_t remainning = encoder->output_buffer_length
|
|
||||||
- encoder->output_buffer_position;
|
|
||||||
if (length > remainning)
|
if (length > remainning)
|
||||||
length = remainning;
|
length = remainning;
|
||||||
|
|
||||||
memcpy(dest,
|
memcpy(dest, begin, length);
|
||||||
encoder->output_buffer->begin() + encoder->output_buffer_position,
|
|
||||||
length);
|
|
||||||
|
|
||||||
encoder->output_buffer_position += length;
|
|
||||||
|
|
||||||
|
encoder->output_begin = begin + length;
|
||||||
return length;
|
return length;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,189 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2010 Max Kellermann <max@duempel.org>
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions
|
|
||||||
* are met:
|
|
||||||
*
|
|
||||||
* - Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
*
|
|
||||||
* - Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
|
||||||
* documentation and/or other materials provided with the
|
|
||||||
* distribution.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
||||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
||||||
* FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
||||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
||||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
||||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
||||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
||||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
||||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef ALLOCATED_ARRAY_HPP
|
|
||||||
#define ALLOCATED_ARRAY_HPP
|
|
||||||
|
|
||||||
#include "gcc.h"
|
|
||||||
|
|
||||||
#include <assert.h>
|
|
||||||
#include <algorithm>
|
|
||||||
|
|
||||||
/**
|
|
||||||
* An array allocated on the heap with a length determined at runtime.
|
|
||||||
*/
|
|
||||||
template<class T>
|
|
||||||
class AllocatedArray {
|
|
||||||
public:
|
|
||||||
typedef size_t size_type;
|
|
||||||
|
|
||||||
protected:
|
|
||||||
size_type the_size;
|
|
||||||
T *restrict data;
|
|
||||||
|
|
||||||
public:
|
|
||||||
typedef T *iterator;
|
|
||||||
typedef const T *const_iterator;
|
|
||||||
|
|
||||||
public:
|
|
||||||
constexpr AllocatedArray():the_size(0), data(nullptr) {}
|
|
||||||
|
|
||||||
explicit AllocatedArray(size_type _size)
|
|
||||||
:the_size(_size), data(new T[the_size]) {
|
|
||||||
assert(size() == 0 || data != nullptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
explicit AllocatedArray(const AllocatedArray &other)
|
|
||||||
:the_size(other.size()), data(new T[the_size]) {
|
|
||||||
assert(size() == 0 || data != nullptr);
|
|
||||||
assert(other.size() == 0 || other.data != nullptr);
|
|
||||||
|
|
||||||
std::copy(other.data, other.data + the_size, data);
|
|
||||||
}
|
|
||||||
|
|
||||||
explicit AllocatedArray(AllocatedArray &&other)
|
|
||||||
:the_size(other.the_size), data(other.data) {
|
|
||||||
other.the_size = 0;
|
|
||||||
other.data = nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
~AllocatedArray() {
|
|
||||||
delete[] data;
|
|
||||||
}
|
|
||||||
|
|
||||||
AllocatedArray &operator=(const AllocatedArray &other) {
|
|
||||||
assert(size() == 0 || data != nullptr);
|
|
||||||
assert(other.size() == 0 || other.data != nullptr);
|
|
||||||
|
|
||||||
if (&other == this)
|
|
||||||
return *this;
|
|
||||||
|
|
||||||
ResizeDiscard(other.size());
|
|
||||||
std::copy(other.begin(), other.end(), data);
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
AllocatedArray &operator=(AllocatedArray &&other) {
|
|
||||||
std::swap(the_size, other.the_size);
|
|
||||||
std::swap(data, other.data);
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if no memory was allocated so far.
|
|
||||||
*/
|
|
||||||
constexpr bool empty() const {
|
|
||||||
return the_size == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the number of allocated elements.
|
|
||||||
*/
|
|
||||||
constexpr size_type size() const {
|
|
||||||
return the_size;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns one element. No bounds checking.
|
|
||||||
*/
|
|
||||||
T &operator[](size_type i) {
|
|
||||||
assert(i < size());
|
|
||||||
|
|
||||||
return data[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns one constant element. No bounds checking.
|
|
||||||
*/
|
|
||||||
const T &operator[](size_type i) const {
|
|
||||||
assert(i < size());
|
|
||||||
|
|
||||||
return data[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
iterator begin() {
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
|
|
||||||
constexpr const_iterator begin() const {
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
|
|
||||||
iterator end() {
|
|
||||||
return data + the_size;
|
|
||||||
}
|
|
||||||
|
|
||||||
constexpr const_iterator end() const {
|
|
||||||
return data + the_size;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Resizes the array, discarding old data.
|
|
||||||
*/
|
|
||||||
void ResizeDiscard(size_type _size) {
|
|
||||||
if (_size == the_size)
|
|
||||||
return;
|
|
||||||
|
|
||||||
delete[] data;
|
|
||||||
the_size = _size;
|
|
||||||
data = new T[the_size];
|
|
||||||
|
|
||||||
assert(size() == 0 || data != nullptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Grows the array to the specified size, discarding old data.
|
|
||||||
* Similar to ResizeDiscard(), but will never shrink the array to
|
|
||||||
* avoid expensive heap operations.
|
|
||||||
*/
|
|
||||||
void GrowDiscard(size_type _size) {
|
|
||||||
if (_size > the_size)
|
|
||||||
ResizeDiscard(_size);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Grows the array to the specified size, preserving the value of a
|
|
||||||
* range of elements, starting from the beginning.
|
|
||||||
*/
|
|
||||||
void GrowPreserve(size_type _size, size_type preserve) {
|
|
||||||
if (_size <= the_size)
|
|
||||||
return;
|
|
||||||
|
|
||||||
T *new_data = new T[_size];
|
|
||||||
assert(_size == 0 || new_data != nullptr);
|
|
||||||
|
|
||||||
std::move(data, data + preserve, new_data);
|
|
||||||
|
|
||||||
delete[] data;
|
|
||||||
data = new_data;
|
|
||||||
the_size = _size;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
Reference in New Issue
Block a user