2012-09-04 09:26:18 +02:00
|
|
|
/*
|
2018-10-31 17:54:59 +01:00
|
|
|
* Copyright 2003-2018 The Music Player Daemon Project
|
2012-09-04 09:26:18 +02:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "OpusDecoderPlugin.h"
|
2016-05-09 16:46:08 +02:00
|
|
|
#include "OggDecoder.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "OpusDomain.hxx"
|
2012-09-04 09:26:18 +02:00
|
|
|
#include "OpusHead.hxx"
|
|
|
|
#include "OpusTags.hxx"
|
2016-05-14 10:39:53 +02:00
|
|
|
#include "lib/xiph/OggPacket.hxx"
|
2016-05-14 10:32:13 +02:00
|
|
|
#include "lib/xiph/OggFind.hxx"
|
2014-01-24 00:02:24 +01:00
|
|
|
#include "../DecoderAPI.hxx"
|
2016-05-02 23:46:48 +02:00
|
|
|
#include "decoder/Reader.hxx"
|
|
|
|
#include "input/Reader.hxx"
|
2013-01-07 22:12:09 +01:00
|
|
|
#include "OggCodec.hxx"
|
2017-02-08 08:26:58 +01:00
|
|
|
#include "tag/Handler.hxx"
|
|
|
|
#include "tag/Builder.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/InputStream.hxx"
|
2016-05-13 13:18:19 +02:00
|
|
|
#include "util/RuntimeError.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2012-09-04 09:26:18 +02:00
|
|
|
|
|
|
|
#include <opus.h>
|
|
|
|
#include <ogg/ogg.h>
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
#include <string.h>
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2016-05-11 17:25:43 +02:00
|
|
|
namespace {
|
|
|
|
|
2013-10-24 20:14:47 +02:00
|
|
|
static constexpr opus_int32 opus_sample_rate = 48000;
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2014-11-11 07:45:31 +01:00
|
|
|
/**
|
|
|
|
* Allocate an output buffer for 16 bit PCM samples big enough to hold
|
|
|
|
* a quarter second, larger than 120ms required by libopus.
|
|
|
|
*/
|
|
|
|
static constexpr unsigned opus_output_buffer_frames = opus_sample_rate / 4;
|
|
|
|
|
2012-09-04 09:26:18 +02:00
|
|
|
gcc_pure
|
|
|
|
static bool
|
2017-06-03 21:33:44 +02:00
|
|
|
IsOpusHead(const ogg_packet &packet) noexcept
|
2012-09-04 09:26:18 +02:00
|
|
|
{
|
|
|
|
return packet.bytes >= 8 && memcmp(packet.packet, "OpusHead", 8) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
gcc_pure
|
|
|
|
static bool
|
2017-06-03 21:33:44 +02:00
|
|
|
IsOpusTags(const ogg_packet &packet) noexcept
|
2012-09-04 09:26:18 +02:00
|
|
|
{
|
|
|
|
return packet.bytes >= 8 && memcmp(packet.packet, "OpusTags", 8) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2015-01-21 22:13:44 +01:00
|
|
|
mpd_opus_init(gcc_unused const ConfigBlock &block)
|
2012-09-04 09:26:18 +02:00
|
|
|
{
|
2013-09-27 22:31:24 +02:00
|
|
|
LogDebug(opus_domain, opus_get_version_string());
|
2012-09-04 09:26:18 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-09 16:46:08 +02:00
|
|
|
class MPDOpusDecoder final : public OggDecoder {
|
2016-05-09 15:34:39 +02:00
|
|
|
OpusDecoder *opus_decoder = nullptr;
|
|
|
|
opus_int16 *output_buffer = nullptr;
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2014-11-11 07:41:01 +01:00
|
|
|
/**
|
|
|
|
* If non-zero, then a previous Opus stream has been found
|
|
|
|
* already with this number of channels. If opus_decoder is
|
|
|
|
* nullptr, then its end-of-stream packet has been found
|
|
|
|
* already.
|
|
|
|
*/
|
2016-05-09 15:34:39 +02:00
|
|
|
unsigned previous_channels = 0;
|
2014-11-11 07:41:01 +01:00
|
|
|
|
2012-09-04 09:26:18 +02:00
|
|
|
size_t frame_size;
|
|
|
|
|
|
|
|
public:
|
2016-05-09 16:46:08 +02:00
|
|
|
explicit MPDOpusDecoder(DecoderReader &reader)
|
|
|
|
:OggDecoder(reader) {}
|
2016-05-09 15:32:40 +02:00
|
|
|
|
2012-09-04 09:26:18 +02:00
|
|
|
~MPDOpusDecoder();
|
|
|
|
|
2016-05-11 17:24:48 +02:00
|
|
|
/**
|
2016-11-18 07:59:01 +01:00
|
|
|
* Has DecoderClient::Ready() been called yet?
|
2016-05-11 17:24:48 +02:00
|
|
|
*/
|
|
|
|
bool IsInitialized() const {
|
|
|
|
return previous_channels != 0;
|
|
|
|
}
|
|
|
|
|
2016-05-13 12:25:30 +02:00
|
|
|
bool Seek(uint64_t where_frame);
|
2016-05-11 17:27:02 +02:00
|
|
|
|
|
|
|
private:
|
2016-05-11 17:55:42 +02:00
|
|
|
void HandleTags(const ogg_packet &packet);
|
|
|
|
void HandleAudio(const ogg_packet &packet);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/* virtual methods from class OggVisitor */
|
|
|
|
void OnOggBeginning(const ogg_packet &packet) override;
|
|
|
|
void OnOggPacket(const ogg_packet &packet) override;
|
|
|
|
void OnOggEnd() override;
|
2012-09-04 09:26:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
MPDOpusDecoder::~MPDOpusDecoder()
|
|
|
|
{
|
2014-02-22 13:37:11 +01:00
|
|
|
delete[] output_buffer;
|
2012-09-04 09:26:18 +02:00
|
|
|
|
|
|
|
if (opus_decoder != nullptr)
|
|
|
|
opus_decoder_destroy(opus_decoder);
|
2013-01-08 01:22:11 +01:00
|
|
|
}
|
|
|
|
|
2016-05-11 17:55:42 +02:00
|
|
|
void
|
|
|
|
MPDOpusDecoder::OnOggPacket(const ogg_packet &packet)
|
2013-01-08 01:22:11 +01:00
|
|
|
{
|
2012-09-04 09:26:18 +02:00
|
|
|
if (IsOpusTags(packet))
|
2016-05-11 17:55:42 +02:00
|
|
|
HandleTags(packet);
|
|
|
|
else
|
|
|
|
HandleAudio(packet);
|
2012-09-04 09:26:18 +02:00
|
|
|
}
|
|
|
|
|
2016-05-11 17:55:42 +02:00
|
|
|
void
|
|
|
|
MPDOpusDecoder::OnOggBeginning(const ogg_packet &packet)
|
2012-09-04 09:26:18 +02:00
|
|
|
{
|
|
|
|
assert(packet.b_o_s);
|
|
|
|
|
2016-05-13 13:18:19 +02:00
|
|
|
if (opus_decoder != nullptr || !IsOpusHead(packet))
|
|
|
|
throw std::runtime_error("BOS packet must be OpusHead");
|
2012-09-04 09:26:18 +02:00
|
|
|
|
|
|
|
unsigned channels;
|
|
|
|
if (!ScanOpusHeader(packet.packet, packet.bytes, channels) ||
|
2016-05-13 13:18:19 +02:00
|
|
|
!audio_valid_channel_count(channels))
|
|
|
|
throw std::runtime_error("Malformed BOS packet");
|
2012-09-04 09:26:18 +02:00
|
|
|
|
|
|
|
assert(opus_decoder == nullptr);
|
2016-05-11 17:24:48 +02:00
|
|
|
assert(IsInitialized() == (output_buffer != nullptr));
|
2014-11-11 07:41:01 +01:00
|
|
|
|
2016-05-13 13:18:19 +02:00
|
|
|
if (IsInitialized() && channels != previous_channels)
|
|
|
|
throw FormatRuntimeError("Next stream has different channels (%u -> %u)",
|
|
|
|
previous_channels, channels);
|
2012-09-04 09:26:18 +02:00
|
|
|
|
|
|
|
/* TODO: parse attributes from the OpusHead (sample rate,
|
|
|
|
channels, ...) */
|
|
|
|
|
|
|
|
int opus_error;
|
|
|
|
opus_decoder = opus_decoder_create(opus_sample_rate, channels,
|
|
|
|
&opus_error);
|
2016-05-13 13:18:19 +02:00
|
|
|
if (opus_decoder == nullptr)
|
|
|
|
throw FormatRuntimeError("libopus error: %s",
|
|
|
|
opus_strerror(opus_error));
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2016-05-11 17:24:48 +02:00
|
|
|
if (IsInitialized()) {
|
2014-11-11 07:41:01 +01:00
|
|
|
/* decoder was already initialized by the previous
|
|
|
|
stream; skip the rest of this method */
|
|
|
|
LogDebug(opus_domain, "Found another stream");
|
2016-05-13 13:24:32 +02:00
|
|
|
return;
|
2014-11-11 07:41:01 +01:00
|
|
|
}
|
|
|
|
|
2016-05-09 16:46:08 +02:00
|
|
|
const auto eos_granulepos = UpdateEndGranulePos();
|
2014-08-29 20:52:39 +02:00
|
|
|
const auto duration = eos_granulepos >= 0
|
|
|
|
? SignedSongTime::FromScale<uint64_t>(eos_granulepos,
|
|
|
|
opus_sample_rate)
|
|
|
|
: SignedSongTime::Negative();
|
2013-10-24 20:23:26 +02:00
|
|
|
|
2014-11-11 07:41:01 +01:00
|
|
|
previous_channels = channels;
|
2013-08-03 21:00:50 +02:00
|
|
|
const AudioFormat audio_format(opus_sample_rate,
|
|
|
|
SampleFormat::S16, channels);
|
2016-11-18 07:59:01 +01:00
|
|
|
client.Ready(audio_format, eos_granulepos > 0, duration);
|
2013-08-03 21:00:50 +02:00
|
|
|
frame_size = audio_format.GetFrameSize();
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2014-11-11 07:45:31 +01:00
|
|
|
output_buffer = new opus_int16[opus_output_buffer_frames
|
|
|
|
* audio_format.channels];
|
2016-05-11 17:55:42 +02:00
|
|
|
|
2016-11-18 08:15:07 +01:00
|
|
|
auto cmd = client.GetCommand();
|
2016-05-11 17:55:42 +02:00
|
|
|
if (cmd != DecoderCommand::NONE)
|
|
|
|
throw cmd;
|
2012-09-04 09:26:18 +02:00
|
|
|
}
|
|
|
|
|
2016-05-11 17:55:42 +02:00
|
|
|
void
|
|
|
|
MPDOpusDecoder::OnOggEnd()
|
2014-11-11 08:36:22 +01:00
|
|
|
{
|
2016-05-09 16:46:08 +02:00
|
|
|
if (!IsSeekable() && IsInitialized()) {
|
2014-11-11 07:41:01 +01:00
|
|
|
/* allow chaining of (unseekable) streams */
|
|
|
|
assert(opus_decoder != nullptr);
|
|
|
|
assert(output_buffer != nullptr);
|
|
|
|
|
|
|
|
opus_decoder_destroy(opus_decoder);
|
|
|
|
opus_decoder = nullptr;
|
2016-05-13 13:24:32 +02:00
|
|
|
} else
|
|
|
|
throw StopDecoder();
|
2014-11-11 08:36:22 +01:00
|
|
|
}
|
|
|
|
|
2016-05-11 17:55:42 +02:00
|
|
|
inline void
|
2012-09-04 09:26:18 +02:00
|
|
|
MPDOpusDecoder::HandleTags(const ogg_packet &packet)
|
|
|
|
{
|
2013-10-25 19:09:22 +02:00
|
|
|
ReplayGainInfo rgi;
|
2013-10-25 19:05:49 +02:00
|
|
|
rgi.Clear();
|
2013-10-24 23:56:06 +02:00
|
|
|
|
2013-09-05 19:11:50 +02:00
|
|
|
TagBuilder tag_builder;
|
2018-07-05 19:07:05 +02:00
|
|
|
AddTagHandler h(tag_builder);
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2018-07-05 19:07:05 +02:00
|
|
|
if (ScanOpusTags(packet.packet, packet.bytes, &rgi, h) &&
|
2017-11-10 19:24:33 +01:00
|
|
|
!tag_builder.empty()) {
|
2016-11-18 08:27:30 +01:00
|
|
|
client.SubmitReplayGain(&rgi);
|
2013-10-24 23:56:06 +02:00
|
|
|
|
2014-01-08 19:42:04 +01:00
|
|
|
Tag tag = tag_builder.Commit();
|
2016-11-18 08:27:30 +01:00
|
|
|
auto cmd = client.SubmitTag(input_stream, std::move(tag));
|
2016-05-11 17:55:42 +02:00
|
|
|
if (cmd != DecoderCommand::NONE)
|
|
|
|
throw cmd;
|
|
|
|
}
|
2012-09-04 09:26:18 +02:00
|
|
|
}
|
|
|
|
|
2016-05-11 17:55:42 +02:00
|
|
|
inline void
|
2012-09-04 09:26:18 +02:00
|
|
|
MPDOpusDecoder::HandleAudio(const ogg_packet &packet)
|
|
|
|
{
|
|
|
|
assert(opus_decoder != nullptr);
|
|
|
|
|
|
|
|
int nframes = opus_decode(opus_decoder,
|
|
|
|
(const unsigned char*)packet.packet,
|
|
|
|
packet.bytes,
|
2014-11-11 07:45:31 +01:00
|
|
|
output_buffer, opus_output_buffer_frames,
|
2012-09-04 09:26:18 +02:00
|
|
|
0);
|
2016-05-13 13:18:19 +02:00
|
|
|
if (nframes < 0)
|
|
|
|
throw FormatRuntimeError("libopus error: %s",
|
|
|
|
opus_strerror(nframes));
|
2012-09-04 09:26:18 +02:00
|
|
|
|
|
|
|
if (nframes > 0) {
|
|
|
|
const size_t nbytes = nframes * frame_size;
|
2016-11-18 08:27:30 +01:00
|
|
|
auto cmd = client.SubmitData(input_stream,
|
|
|
|
output_buffer, nbytes,
|
|
|
|
0);
|
2013-09-27 12:11:37 +02:00
|
|
|
if (cmd != DecoderCommand::NONE)
|
2016-05-11 17:55:42 +02:00
|
|
|
throw cmd;
|
2013-10-24 22:07:35 +02:00
|
|
|
|
|
|
|
if (packet.granulepos > 0)
|
2018-09-21 19:37:56 +02:00
|
|
|
client.SubmitTimestamp(FloatDuration(packet.granulepos)
|
2016-11-18 08:27:30 +01:00
|
|
|
/ opus_sample_rate);
|
2012-09-04 09:26:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-07 23:05:33 +01:00
|
|
|
bool
|
2016-05-13 12:25:30 +02:00
|
|
|
MPDOpusDecoder::Seek(uint64_t where_frame)
|
2013-01-07 23:05:33 +01:00
|
|
|
{
|
2016-05-09 16:46:08 +02:00
|
|
|
assert(IsSeekable());
|
2014-05-11 18:34:09 +02:00
|
|
|
assert(input_stream.IsSeekable());
|
|
|
|
assert(input_stream.KnownSize());
|
2013-01-07 23:05:33 +01:00
|
|
|
|
2014-08-26 11:33:45 +02:00
|
|
|
const ogg_int64_t where_granulepos(where_frame);
|
2013-01-07 23:05:33 +01:00
|
|
|
|
2016-09-09 18:47:42 +02:00
|
|
|
try {
|
|
|
|
SeekGranulePos(where_granulepos);
|
|
|
|
return true;
|
2017-12-19 10:56:23 +01:00
|
|
|
} catch (...) {
|
2016-09-09 18:47:42 +02:00
|
|
|
return false;
|
|
|
|
}
|
2013-01-07 23:05:33 +01:00
|
|
|
}
|
|
|
|
|
2012-09-04 09:26:18 +02:00
|
|
|
static void
|
2016-11-18 07:13:35 +01:00
|
|
|
mpd_opus_stream_decode(DecoderClient &client,
|
2013-10-23 22:08:59 +02:00
|
|
|
InputStream &input_stream)
|
2012-09-04 09:26:18 +02:00
|
|
|
{
|
2016-11-18 07:13:35 +01:00
|
|
|
if (ogg_codec_detect(&client, input_stream) != OGG_CODEC_OPUS)
|
2012-09-04 09:26:18 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* rewind the stream, because ogg_codec_detect() has
|
|
|
|
moved it */
|
2016-09-09 18:47:42 +02:00
|
|
|
try {
|
|
|
|
input_stream.LockRewind();
|
2017-12-19 10:56:23 +01:00
|
|
|
} catch (...) {
|
2016-09-09 18:47:42 +02:00
|
|
|
}
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2016-11-18 07:13:35 +01:00
|
|
|
DecoderReader reader(client, input_stream);
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2016-05-13 12:16:22 +02:00
|
|
|
MPDOpusDecoder d(reader);
|
2016-05-09 15:32:40 +02:00
|
|
|
|
2012-09-04 09:26:18 +02:00
|
|
|
while (true) {
|
2016-05-11 17:55:42 +02:00
|
|
|
try {
|
|
|
|
d.Visit();
|
2013-01-08 01:05:59 +01:00
|
|
|
break;
|
2016-05-11 17:55:42 +02:00
|
|
|
} catch (DecoderCommand cmd) {
|
|
|
|
if (cmd == DecoderCommand::SEEK) {
|
2016-11-18 08:15:07 +01:00
|
|
|
if (d.Seek(client.GetSeekFrame()))
|
|
|
|
client.CommandFinished();
|
2016-05-11 17:55:42 +02:00
|
|
|
else
|
2016-11-18 08:15:07 +01:00
|
|
|
client.SeekError();
|
2016-05-11 17:55:42 +02:00
|
|
|
} else if (cmd != DecoderCommand::NONE)
|
|
|
|
break;
|
|
|
|
}
|
2012-09-04 09:26:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2016-05-14 10:39:53 +02:00
|
|
|
ReadAndParseOpusHead(OggSyncState &sync, OggStreamState &stream,
|
|
|
|
unsigned &channels)
|
2012-09-04 09:26:18 +02:00
|
|
|
{
|
|
|
|
ogg_packet packet;
|
|
|
|
|
2016-05-14 10:39:53 +02:00
|
|
|
return OggReadPacket(sync, stream, packet) && packet.b_o_s &&
|
|
|
|
IsOpusHead(packet) &&
|
|
|
|
ScanOpusHeader(packet.packet, packet.bytes, channels) &&
|
|
|
|
audio_valid_channel_count(channels);
|
|
|
|
}
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2016-05-14 10:39:53 +02:00
|
|
|
static bool
|
|
|
|
ReadAndVisitOpusTags(OggSyncState &sync, OggStreamState &stream,
|
2018-07-05 19:07:05 +02:00
|
|
|
TagHandler &handler)
|
2016-05-14 10:39:53 +02:00
|
|
|
{
|
|
|
|
ogg_packet packet;
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2016-05-14 10:39:53 +02:00
|
|
|
return OggReadPacket(sync, stream, packet) &&
|
|
|
|
IsOpusTags(packet) &&
|
|
|
|
ScanOpusTags(packet.packet, packet.bytes,
|
|
|
|
nullptr,
|
2018-07-05 19:07:05 +02:00
|
|
|
handler);
|
2016-05-14 10:39:53 +02:00
|
|
|
}
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2016-05-14 10:39:53 +02:00
|
|
|
static void
|
|
|
|
VisitOpusDuration(InputStream &is, OggSyncState &sync, OggStreamState &stream,
|
2018-07-05 19:07:05 +02:00
|
|
|
TagHandler &handler)
|
2016-05-14 10:39:53 +02:00
|
|
|
{
|
|
|
|
ogg_packet packet;
|
2012-09-04 09:26:18 +02:00
|
|
|
|
2016-05-14 10:39:53 +02:00
|
|
|
if (OggSeekFindEOS(sync, stream, packet, is)) {
|
2014-08-29 22:43:36 +02:00
|
|
|
const auto duration =
|
|
|
|
SongTime::FromScale<uint64_t>(packet.granulepos,
|
|
|
|
opus_sample_rate);
|
2018-07-05 19:07:05 +02:00
|
|
|
handler.OnDuration(duration);
|
2014-08-29 22:43:36 +02:00
|
|
|
}
|
2016-05-14 10:39:53 +02:00
|
|
|
}
|
2013-01-07 23:06:02 +01:00
|
|
|
|
2016-05-14 10:39:53 +02:00
|
|
|
static bool
|
2018-07-05 19:07:05 +02:00
|
|
|
mpd_opus_scan_stream(InputStream &is, TagHandler &handler) noexcept
|
2016-05-14 10:39:53 +02:00
|
|
|
{
|
|
|
|
InputStreamReader reader(is);
|
|
|
|
OggSyncState oy(reader);
|
|
|
|
|
|
|
|
ogg_page first_page;
|
|
|
|
if (!oy.ExpectPage(first_page))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
OggStreamState os(first_page);
|
|
|
|
|
|
|
|
unsigned channels;
|
|
|
|
if (!ReadAndParseOpusHead(oy, os, channels) ||
|
2018-07-05 19:07:05 +02:00
|
|
|
!ReadAndVisitOpusTags(oy, os, handler))
|
2016-05-14 10:39:53 +02:00
|
|
|
return false;
|
|
|
|
|
2018-07-07 13:34:32 +02:00
|
|
|
handler.OnAudioFormat(AudioFormat(opus_sample_rate,
|
|
|
|
SampleFormat::S16, channels));
|
|
|
|
|
2018-07-05 19:07:05 +02:00
|
|
|
VisitOpusDuration(is, oy, os, handler);
|
2016-05-14 10:39:53 +02:00
|
|
|
return true;
|
2012-09-04 09:26:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *const opus_suffixes[] = {
|
|
|
|
"opus",
|
|
|
|
"ogg",
|
|
|
|
"oga",
|
|
|
|
nullptr
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *const opus_mime_types[] = {
|
2014-11-12 15:14:34 +01:00
|
|
|
/* the official MIME type (RFC 5334) */
|
|
|
|
"audio/ogg",
|
|
|
|
|
|
|
|
/* deprecated (RFC 5334) */
|
|
|
|
"application/ogg",
|
|
|
|
|
|
|
|
/* deprecated; from an early draft */
|
2012-09-04 09:26:18 +02:00
|
|
|
"audio/opus",
|
|
|
|
nullptr
|
|
|
|
};
|
|
|
|
|
2016-05-11 17:25:43 +02:00
|
|
|
} /* anonymous namespace */
|
|
|
|
|
2013-10-21 20:31:34 +02:00
|
|
|
const struct DecoderPlugin opus_decoder_plugin = {
|
2012-09-04 09:26:18 +02:00
|
|
|
"opus",
|
|
|
|
mpd_opus_init,
|
|
|
|
nullptr,
|
|
|
|
mpd_opus_stream_decode,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
mpd_opus_scan_stream,
|
|
|
|
nullptr,
|
|
|
|
opus_suffixes,
|
|
|
|
opus_mime_types,
|
|
|
|
};
|