forked from xdissent/node-pcm-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
formatter.cc
178 lines (132 loc) · 6.13 KB
/
formatter.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#include "formatter.h"
using namespace pcmutils;
void Formatter::Init(Handle<Object> exports) {
Local<FunctionTemplate> tpl = FunctionTemplate::New(New);
tpl->InstanceTemplate()->SetInternalFieldCount(1);
tpl->SetClassName(String::NewSymbol("Formatter"));
NODE_SET_PROTOTYPE_METHOD(tpl, "format", Format);
Persistent<Function> constructor = Persistent<Function>::New(tpl->GetFunction());
exports->Set(String::NewSymbol("Formatter"), constructor);
}
Handle<Value> Formatter::New(const Arguments& args) {
HandleScope scope;
if (!args.IsConstructCall())
return ThrowException(Exception::TypeError(String::New("Use the new operator")));
REQUIRE_ARGUMENTS(2);
Formatter* fmt = new Formatter();
fmt->Wrap(args.This());
fmt->inFormat = args[0]->Int32Value();
fmt->outFormat = args[1]->Int32Value();
fmt->formatting = false;
// TODO: lol
if (fmt->inFormat == 0) fmt->inAlignment = 4;
if (fmt->inFormat == 2) fmt->inAlignment = 2;
if (fmt->inFormat == 4) fmt->inAlignment = 2;
if (fmt->outFormat == 0) fmt->outAlignment = 4;
if (fmt->outFormat == 2) fmt->outAlignment = 2;
if (fmt->outFormat == 4) fmt->outAlignment = 2;
fmt->buffer = (char*)malloc(fmt->outAlignment * FMT_BUFFER_SAMPLES);
return args.This();
}
Handle<Value> Formatter::Format(const Arguments& args) {
HandleScope scope;
REQUIRE_ARGUMENTS(2);
REQUIRE_ARGUMENT_FUNCTION(1, callback);
Formatter* fmt = ObjectWrap::Unwrap<Formatter>(args.Holder());
COND_ERR_CALL(fmt->formatting, callback, "Still formatting");
FormatBaton* baton = new FormatBaton(fmt, callback, args[0]->ToObject());
fmt->formatting = true;
BeginFormat(baton);
return scope.Close(args.Holder());
}
void Formatter::BeginFormat(Baton* baton) {
uv_queue_work(uv_default_loop(), &baton->request, DoFormat, (uv_after_work_cb)AfterFormat);
}
void Formatter::DoFormat(uv_work_t* req) {
FormatBaton* baton = static_cast<FormatBaton*>(req->data);
Formatter* fmt = baton->fmt;
int chunkSamples = baton->chunkLength / fmt->inAlignment;
int limitSamples;
int chunkSamplesLeft = chunkSamples - baton->totalSamples;
if (FMT_BUFFER_SAMPLES < chunkSamplesLeft) {
limitSamples = FMT_BUFFER_SAMPLES;
} else {
limitSamples = chunkSamplesLeft;
}
if (fmt->inFormat == 0) { // F32LE
if (fmt->outFormat == 2) { // F32LE to S16LE
for (int sample = 0; sample < limitSamples; sample++) {
float* floatChunk = static_cast<float*>(static_cast<void*>(baton->chunkData));
float floatVal = floatChunk[baton->totalSamples + sample];
int16_t* intBuffer = static_cast<int16_t*>(static_cast<void*>(fmt->buffer));
intBuffer[sample] = static_cast<int16_t>(floatVal * 32767);
}
} else if (fmt->outFormat == 4) { // F32LE to U16LE
for (int sample = 0; sample < limitSamples; sample++) {
float* floatChunk = static_cast<float*>(static_cast<void*>(baton->chunkData));
float floatVal = floatChunk[baton->totalSamples + sample];
uint16_t* uintBuffer = static_cast<uint16_t*>(static_cast<void*>(fmt->buffer));
uintBuffer[sample] = static_cast<uint16_t>((floatVal * 32767) + 32768);
}
} else {
fprintf(stderr, "Unsupported conversion\n");
}
} else if (fmt->inFormat == 2) { // S16LE
if (fmt->outFormat == 0) { // S16LE to F32LE
for (int sample = 0; sample < limitSamples; sample++) {
int16_t* intChunk = static_cast<int16_t*>(static_cast<void*>(baton->chunkData));
int16_t intVal = intChunk[baton->totalSamples + sample];
float* floatBuffer = static_cast<float*>(static_cast<void*>(fmt->buffer));
floatBuffer[sample] = static_cast<float>(intVal / 32768);
}
} else if (fmt->outFormat == 4) { // S16LE to U16LE
for (int sample = 0; sample < limitSamples; sample++) {
int16_t* intChunk = static_cast<int16_t*>(static_cast<void*>(baton->chunkData));
int16_t intVal = intChunk[baton->totalSamples + sample];
uint16_t* uintBuffer = static_cast<uint16_t*>(static_cast<void*>(fmt->buffer));
uintBuffer[sample] = static_cast<uint16_t>(intVal + 32768);
}
} else {
fprintf(stderr, "Unsupported conversion\n");
}
} else if (fmt->inFormat == 4) { // U16LE
if (fmt->outFormat == 0) { // U16LE to F32LE
for (int sample = 0; sample < limitSamples; sample++) {
uint16_t* intChunk = static_cast<uint16_t*>(static_cast<void*>(baton->chunkData));
uint16_t intVal = intChunk[baton->totalSamples + sample];
float* floatBuffer = static_cast<float*>(static_cast<void*>(fmt->buffer));
floatBuffer[sample] = static_cast<float>((intVal - 32768) / 32768);
}
} else if (fmt->outFormat == 2) { // U16LE to S16LE
for (int sample = 0; sample < limitSamples; sample++) {
uint16_t* intChunk = static_cast<uint16_t*>(static_cast<void*>(baton->chunkData));
uint16_t intVal = intChunk[baton->totalSamples + sample];
int16_t* intBuffer = static_cast<int16_t*>(static_cast<void*>(fmt->buffer));
intBuffer[sample] = static_cast<int16_t>(intVal - 32768);
}
} else {
fprintf(stderr, "Unsupported conversion\n");
}
} else {
fprintf(stderr, "Unsupported conversion\n");
}
baton->totalSamples += limitSamples;
baton->formattedSamples = limitSamples;
}
void Formatter::AfterFormat(uv_work_t* req) {
HandleScope scope;
FormatBaton* baton = static_cast<FormatBaton*>(req->data);
Formatter* fmt = baton->fmt;
// Copy buffer because we may clobber them soon.
Buffer* buffer = Buffer::New(fmt->buffer, baton->formattedSamples * fmt->outAlignment);
if (baton->chunkLength / fmt->inAlignment > static_cast<size_t>(baton->totalSamples)) {
Local<Value> argv[3] = { Local<Value>::New(Null()), Local<Value>::New(buffer->handle_), Local<Value>::New(Boolean::New(false)) };
TRY_CATCH_CALL(fmt->handle_, baton->callback, 3, argv);
BeginFormat(baton);
return;
}
fmt->formatting = false;
Local<Value> argv[3] = { Local<Value>::New(Null()), Local<Value>::New(buffer->handle_), Local<Value>::New(Boolean::New(true)) };
TRY_CATCH_CALL(fmt->handle_, baton->callback, 3, argv);
delete baton;
}