Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/servers/audio/effects/audio_effect_record.h
10278 views
1
/**************************************************************************/
2
/* audio_effect_record.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "core/os/thread.h"
34
#include "scene/resources/audio_stream_wav.h"
35
#include "servers/audio/audio_effect.h"
36
#include "servers/audio_server.h"
37
38
class AudioEffectRecord;
39
40
class AudioEffectRecordInstance : public AudioEffectInstance {
41
GDCLASS(AudioEffectRecordInstance, AudioEffectInstance);
42
friend class AudioEffectRecord;
43
44
bool is_recording;
45
Thread io_thread;
46
47
Vector<AudioFrame> ring_buffer;
48
Vector<float> recording_data;
49
50
unsigned int ring_buffer_pos;
51
unsigned int ring_buffer_mask;
52
unsigned int ring_buffer_read_pos;
53
54
void _io_thread_process();
55
void _io_store_buffer();
56
static void _thread_callback(void *_instance);
57
void _init_recording();
58
void _update_buffer();
59
static void _update(void *userdata);
60
61
public:
62
void init();
63
void finish();
64
virtual void process(const AudioFrame *p_src_frames, AudioFrame *p_dst_frames, int p_frame_count) override;
65
virtual bool process_silence() const override;
66
};
67
68
class AudioEffectRecord : public AudioEffect {
69
GDCLASS(AudioEffectRecord, AudioEffect);
70
71
friend class AudioEffectRecordInstance;
72
73
enum {
74
IO_BUFFER_SIZE_MS = 1500
75
};
76
77
Ref<AudioEffectRecordInstance> current_instance;
78
79
AudioStreamWAV::Format format;
80
81
void ensure_thread_stopped();
82
83
protected:
84
static void _bind_methods();
85
86
public:
87
Ref<AudioEffectInstance> instantiate() override;
88
void set_recording_active(bool p_record);
89
bool is_recording_active() const;
90
void set_format(AudioStreamWAV::Format p_format);
91
AudioStreamWAV::Format get_format() const;
92
Ref<AudioStreamWAV> get_recording() const;
93
AudioEffectRecord();
94
~AudioEffectRecord();
95
};
96
97