Commit 5a0dc808 authored by Max Kellermann's avatar Max Kellermann

decoder/opus: use new[] instead of g_malloc()

parent befbf6bf
...@@ -35,8 +35,6 @@ ...@@ -35,8 +35,6 @@
#include <opus.h> #include <opus.h>
#include <ogg/ogg.h> #include <ogg/ogg.h>
#include <glib.h>
#include <string.h> #include <string.h>
static constexpr opus_int32 opus_sample_rate = 48000; static constexpr opus_int32 opus_sample_rate = 48000;
...@@ -105,7 +103,7 @@ public: ...@@ -105,7 +103,7 @@ public:
MPDOpusDecoder::~MPDOpusDecoder() MPDOpusDecoder::~MPDOpusDecoder()
{ {
g_free(output_buffer); delete[] output_buffer;
if (opus_decoder != nullptr) if (opus_decoder != nullptr)
opus_decoder_destroy(opus_decoder); opus_decoder_destroy(opus_decoder);
...@@ -270,9 +268,7 @@ MPDOpusDecoder::HandleBOS(const ogg_packet &packet) ...@@ -270,9 +268,7 @@ MPDOpusDecoder::HandleBOS(const ogg_packet &packet)
to hold a quarter second, larger than 120ms required by to hold a quarter second, larger than 120ms required by
libopus */ libopus */
output_size = audio_format.sample_rate / 4; output_size = audio_format.sample_rate / 4;
output_buffer = (opus_int16 *) output_buffer = new opus_int16[output_size * audio_format.channels];
g_malloc(sizeof(*output_buffer) * output_size *
audio_format.channels);
return decoder_get_command(decoder); return decoder_get_command(decoder);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment