2013-04-18 06:09:55 +03:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2009-03-28 10:57:34 +02:00
|
|
|
// ---------------------------------------------------------------------------------
|
|
|
|
// Class: WaveFileWriter
|
|
|
|
// Description: Simple utility class to make it easy to write long 16-bit stereo
|
2008-12-08 06:46:09 +02: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 10:57:34 +02:00
|
|
|
// ---------------------------------------------------------------------------------
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2014-03-12 21:33:41 +02:00
|
|
|
#include <string>
|
2014-09-08 04:06:58 +03:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "Common/FileUtil.h"
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2014-09-06 18:21:44 +03:00
|
|
|
class WaveFileWriter : NonCopyable
|
2008-12-08 06:46:09 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
WaveFileWriter();
|
|
|
|
~WaveFileWriter();
|
|
|
|
|
2014-03-12 21:33:41 +02:00
|
|
|
bool Start(const std::string& filename, unsigned int HLESampleRate);
|
2008-12-08 06:46:09 +02:00
|
|
|
void Stop();
|
|
|
|
|
|
|
|
void SetSkipSilence(bool skip) { skip_silence = skip; }
|
|
|
|
|
2013-01-12 05:22:55 +02:00
|
|
|
void AddStereoSamples(const short *sample_data, u32 count);
|
|
|
|
void AddStereoSamplesBE(const short *sample_data, u32 count); // big endian
|
2013-12-11 15:43:58 +02:00
|
|
|
u32 GetAudioSize() const { return audio_size; }
|
2014-09-06 18:21:44 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
File::IOFile file;
|
|
|
|
bool skip_silence;
|
|
|
|
u32 audio_size;
|
|
|
|
short* conv_buffer;
|
|
|
|
void Write(u32 value);
|
|
|
|
void Write4(const char* ptr);
|
2008-12-08 06:46:09 +02:00
|
|
|
};
|