2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
// ---------------------------------------------------------------------------------
|
|
|
|
|
// Class: WaveFileWriter
|
|
|
|
|
// Description: Simple utility class to make it easy to write long 16-bit stereo
|
2008-10-08 18:57:33 +00:00
|
|
|
// audio streams to disk.
|
|
|
|
|
// Use Start() to start recording to a file, and AddStereoSamples to add wave data.
|
|
|
|
|
// The float variant will convert from -1.0-1.0 range and clamp.
|
|
|
|
|
// Alternatively, AddSamplesBE for big endian wave data.
|
|
|
|
|
// If Stop is not called when it destructs, the destructor will call Stop().
|
2009-03-28 08:57:34 +00:00
|
|
|
// ---------------------------------------------------------------------------------
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-12-02 20:00:48 -05:00
|
|
|
#include <array>
|
2014-03-12 15:33:41 -04:00
|
|
|
#include <string>
|
2017-01-15 21:46:32 +01:00
|
|
|
|
2014-09-07 20:06:58 -05:00
|
|
|
#include "Common/CommonTypes.h"
|
2020-09-15 03:29:41 -07:00
|
|
|
#include "Common/IOFile.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2017-08-04 23:57:12 +02:00
|
|
|
class WaveFileWriter
|
2008-10-08 18:57:33 +00:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
WaveFileWriter();
|
|
|
|
|
~WaveFileWriter();
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2017-08-04 23:57:12 +02:00
|
|
|
WaveFileWriter(const WaveFileWriter&) = delete;
|
|
|
|
|
WaveFileWriter& operator=(const WaveFileWriter&) = delete;
|
|
|
|
|
WaveFileWriter(WaveFileWriter&&) = delete;
|
|
|
|
|
WaveFileWriter& operator=(WaveFileWriter&&) = delete;
|
|
|
|
|
|
2022-07-03 15:07:06 -07:00
|
|
|
bool Start(const std::string& filename, u32 sample_rate_divisor);
|
2008-10-08 18:57:33 +00:00
|
|
|
void Stop();
|
2014-09-06 11:21:44 -04:00
|
|
|
|
2008-10-08 18:57:33 +00:00
|
|
|
void SetSkipSilence(bool skip) { skip_silence = skip; }
|
2022-07-03 15:07:06 -07:00
|
|
|
// big endian
|
|
|
|
|
void AddStereoSamplesBE(const short* sample_data, u32 count, u32 sample_rate_divisor,
|
|
|
|
|
int l_volume, int r_volume);
|
2013-12-11 08:43:58 -05:00
|
|
|
u32 GetAudioSize() const { return audio_size; }
|
2018-04-12 14:18:04 +02:00
|
|
|
|
2014-09-06 11:21:44 -04:00
|
|
|
private:
|
2015-12-02 20:00:48 -05:00
|
|
|
static constexpr size_t BUFFER_SIZE = 32 * 1024;
|
|
|
|
|
|
2014-09-06 11:21:44 -04:00
|
|
|
void Write(u32 value);
|
|
|
|
|
void Write4(const char* ptr);
|
2022-07-03 15:07:06 -07:00
|
|
|
|
|
|
|
|
File::IOFile file;
|
2016-06-11 18:52:45 -04:00
|
|
|
std::string basename;
|
2022-07-03 15:07:06 -07:00
|
|
|
u32 file_index = 0;
|
|
|
|
|
u32 audio_size = 0;
|
|
|
|
|
|
|
|
|
|
u32 current_sample_rate_divisor;
|
|
|
|
|
std::array<short, BUFFER_SIZE> conv_buffer{};
|
|
|
|
|
|
|
|
|
|
bool skip_silence = false;
|
2008-10-08 18:57:33 +00:00
|
|
|
};
|