OpenTTD Source 20260311-master-g511d3794ce
soundloader_opus.cpp
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * OpenTTD 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, version 2.
4 * OpenTTD 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.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
9
10#include "stdafx.h"
11
12#include "debug.h"
13#include "misc/autorelease.hpp"
15#include "sound_type.h"
16#include "soundloader_type.h"
17
18#include <opusfile.h>
19
20#include "safeguards.h"
21
23class SoundLoader_Opus : public SoundLoader {
24public:
25 SoundLoader_Opus() : SoundLoader("opus", "Opus sound loader", 10) {}
26
27 static constexpr uint16_t OPUS_SAMPLE_RATE = 48000;
28 static constexpr uint8_t OPUS_SAMPLE_BITS = 16;
29
31 static constexpr size_t MIN_OPUS_FILE_SIZE = 57U;
32
37 static constexpr size_t DECODE_BUFFER_SAMPLES = 5760 * 2;
38 static constexpr size_t DECODE_BUFFER_BYTES = DECODE_BUFFER_SAMPLES * sizeof(opus_int16);
39
40 bool Load(SoundEntry &sound, bool new_format, std::vector<std::byte> &data) const override
41 {
42 if (!new_format) return false;
43
44 /* At least 57 bytes are needed for an Opus-only file. */
45 if (sound.file_size < MIN_OPUS_FILE_SIZE) return false;
46
47 /* Test if data is an Ogg Opus stream, as identified by the initial file header. */
48 auto filepos = sound.file->GetPos();
49 std::vector<uint8_t> tmp(MIN_OPUS_FILE_SIZE);
50 sound.file->ReadBlock(tmp.data(), tmp.size());
51 if (op_test(nullptr, tmp.data(), tmp.size()) != 0) return false;
52
53 /* Read the whole file into memory. */
54 tmp.resize(sound.file_size);
55 sound.file->SeekTo(filepos, SEEK_SET);
56 sound.file->ReadBlock(tmp.data(), tmp.size());
57
58 int error = 0;
59 auto of = AutoRelease<OggOpusFile, op_free>(op_open_memory(tmp.data(), tmp.size(), &error));
60 if (error != 0) {
61 Debug(grf, 0, "SoundLoader_Opus: Unable to open stream.");
62 return false;
63 }
64
65 size_t datapos = 0;
66 for (;;) {
67 data.resize(datapos + DECODE_BUFFER_BYTES);
68
69 int link_index;
70 int read = op_read(of.get(), reinterpret_cast<opus_int16 *>(&data[datapos]), DECODE_BUFFER_BYTES, &link_index);
71 if (read == 0) break;
72
73 if (read < 0) {
74 Debug(grf, 0, "SoundLoader_Opus: Unexpected end of stream.");
75 data.clear();
76 return false;
77 }
78
79 int channels = op_channel_count(of.get(), link_index);
80 if (channels != 1) {
81 Debug(grf, 0, "SoundLoader_Opus: Unsupported channels {}, expected 1.", channels);
82 data.clear();
83 return false;
84 }
85
86 datapos += read * sizeof(opus_int16);
87 }
88
89 /* OpusFile always decodes at 48kHz. */
90 sound.channels = 1;
91 sound.bits_per_sample = OPUS_SAMPLE_BITS;
92 sound.rate = OPUS_SAMPLE_RATE;
93
94 /* We resized by DECODE_BUFFER_BYTES just before finally reading zero bytes, undo this. */
95 data.resize(data.size() - DECODE_BUFFER_BYTES);
96
97 return true;
98 }
99
100private:
101 static SoundLoader_Opus instance;
102};
103
104/* static */ SoundLoader_Opus SoundLoader_Opus::instance{};
Helper for std::unique_ptr to use an arbitrary function as the deleter.
std::unique_ptr< T, DeleterFromFunc< Tfunc > > AutoRelease
Specialisation of std::unique_ptr for objects which must be deleted by calling a function.
void ReadBlock(void *ptr, size_t size)
Read a block.
size_t GetPos() const
Get position in the file.
void SeekTo(size_t pos, int mode)
Seek in the current file.
Opus sound loader.
static constexpr uint16_t OPUS_SAMPLE_RATE
OpusFile always decodes at 48kHz.
static constexpr uint8_t OPUS_SAMPLE_BITS
OpusFile op_read() uses 16 bits per sample.
static constexpr size_t MIN_OPUS_FILE_SIZE
For good results, you will need at least 57 bytes (for a pure Opus-only stream).
static constexpr size_t DECODE_BUFFER_SAMPLES
It is recommended that this be large enough for at least 120 ms of data at 48 kHz per channel (5760 v...
bool Load(SoundEntry &sound, bool new_format, std::vector< std::byte > &data) const override
Load a sound from the file and offset in the given sound entry.
Functions related to debugging.
#define Debug(category, level, format_string,...)
Output a line of debugging information.
Definition debug.h:37
Class related to random access to files.
A number of safeguards to prevent using unsafe methods.
Types related to sounds.
Types related to sound loaders.
Definition of base types and functions in a cross-platform compatible way.