@livekit/rtc-node 0.11.1 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/audio_frame.cjs +94 -0
- package/dist/audio_frame.cjs.map +1 -0
- package/dist/audio_frame.js +64 -67
- package/dist/audio_frame.js.map +1 -1
- package/dist/audio_resampler.cjs +153 -0
- package/dist/audio_resampler.cjs.map +1 -0
- package/dist/audio_resampler.js +129 -134
- package/dist/audio_resampler.js.map +1 -1
- package/dist/audio_source.cjs +116 -0
- package/dist/audio_source.cjs.map +1 -0
- package/dist/audio_source.js +92 -85
- package/dist/audio_source.js.map +1 -1
- package/dist/audio_stream.cjs +104 -0
- package/dist/audio_stream.cjs.map +1 -0
- package/dist/audio_stream.js +77 -78
- package/dist/audio_stream.js.map +1 -1
- package/dist/e2ee.cjs +268 -0
- package/dist/e2ee.cjs.map +1 -0
- package/dist/e2ee.d.ts.map +1 -1
- package/dist/e2ee.js +244 -221
- package/dist/e2ee.js.map +1 -1
- package/dist/ffi_client.cjs +101 -0
- package/dist/ffi_client.cjs.map +1 -0
- package/dist/ffi_client.js +73 -48
- package/dist/ffi_client.js.map +1 -1
- package/dist/index.cjs +188 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.js +130 -48
- package/dist/index.js.map +1 -1
- package/dist/napi/native.d.cjs +17 -0
- package/dist/napi/native.d.cjs.map +1 -0
- package/dist/napi/native.d.js +1 -0
- package/dist/napi/native.d.js.map +1 -0
- package/dist/napi/native.d.ts +5 -5
- package/dist/native.cjs +301 -0
- package/dist/native.d.ts +19 -0
- package/dist/native.js +15 -0
- package/dist/participant.cjs +388 -0
- package/dist/participant.cjs.map +1 -0
- package/dist/participant.js +363 -339
- package/dist/participant.js.map +1 -1
- package/dist/proto/audio_frame_pb.cjs +193 -0
- package/dist/proto/audio_frame_pb.cjs.map +1 -0
- package/dist/proto/audio_frame_pb.js +120 -320
- package/dist/proto/audio_frame_pb.js.map +1 -1
- package/dist/proto/e2ee_pb.cjs +131 -0
- package/dist/proto/e2ee_pb.cjs.map +1 -0
- package/dist/proto/e2ee_pb.js +76 -202
- package/dist/proto/e2ee_pb.js.map +1 -1
- package/dist/proto/ffi_pb.cjs +76 -0
- package/dist/proto/ffi_pb.cjs.map +1 -0
- package/dist/proto/ffi_pb.js +33 -92
- package/dist/proto/ffi_pb.js.map +1 -1
- package/dist/proto/handle_pb.cjs +33 -0
- package/dist/proto/handle_pb.cjs.map +1 -0
- package/dist/proto/handle_pb.js +6 -22
- package/dist/proto/handle_pb.js.map +1 -1
- package/dist/proto/participant_pb.cjs +50 -0
- package/dist/proto/participant_pb.cjs.map +1 -0
- package/dist/proto/participant_pb.js +19 -57
- package/dist/proto/participant_pb.js.map +1 -1
- package/dist/proto/room_pb.cjs +370 -0
- package/dist/proto/room_pb.cjs.map +1 -0
- package/dist/proto/room_pb.js +239 -632
- package/dist/proto/room_pb.js.map +1 -1
- package/dist/proto/rpc_pb.cjs +63 -0
- package/dist/proto/rpc_pb.cjs.map +1 -0
- package/dist/proto/rpc_pb.js +26 -72
- package/dist/proto/rpc_pb.js.map +1 -1
- package/dist/proto/stats_pb.cjs +256 -0
- package/dist/proto/stats_pb.cjs.map +1 -0
- package/dist/proto/stats_pb.js +175 -456
- package/dist/proto/stats_pb.js.map +1 -1
- package/dist/proto/track_pb.cjs +116 -0
- package/dist/proto/track_pb.cjs.map +1 -0
- package/dist/proto/track_pb.js +65 -171
- package/dist/proto/track_pb.js.map +1 -1
- package/dist/proto/video_frame_pb.cjs +161 -0
- package/dist/proto/video_frame_pb.cjs.map +1 -0
- package/dist/proto/video_frame_pb.js +101 -269
- package/dist/proto/video_frame_pb.js.map +1 -1
- package/dist/room.cjs +440 -0
- package/dist/room.cjs.map +1 -0
- package/dist/room.js +384 -373
- package/dist/room.js.map +1 -1
- package/dist/rpc.cjs +89 -0
- package/dist/rpc.cjs.map +1 -0
- package/dist/rpc.js +59 -63
- package/dist/rpc.js.map +1 -1
- package/dist/track.cjs +100 -0
- package/dist/track.cjs.map +1 -0
- package/dist/track.js +66 -62
- package/dist/track.js.map +1 -1
- package/dist/track_publication.cjs +106 -0
- package/dist/track_publication.cjs.map +1 -0
- package/dist/track_publication.js +76 -74
- package/dist/track_publication.js.map +1 -1
- package/dist/transcription.cjs +17 -0
- package/dist/transcription.cjs.map +1 -0
- package/dist/transcription.js +0 -1
- package/dist/transcription.js.map +1 -1
- package/dist/types.cjs +17 -0
- package/dist/types.cjs.map +1 -0
- package/dist/types.js +0 -1
- package/dist/types.js.map +1 -1
- package/dist/version.cjs +29 -0
- package/dist/version.cjs.map +1 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +4 -1
- package/dist/version.js.map +1 -1
- package/dist/video_frame.cjs +242 -0
- package/dist/video_frame.cjs.map +1 -0
- package/dist/video_frame.js +212 -201
- package/dist/video_frame.js.map +1 -1
- package/dist/video_source.cjs +63 -0
- package/dist/video_source.cjs.map +1 -0
- package/dist/video_source.d.ts.map +1 -1
- package/dist/video_source.js +42 -37
- package/dist/video_source.js.map +1 -1
- package/dist/video_stream.cjs +103 -0
- package/dist/video_stream.cjs.map +1 -0
- package/dist/video_stream.js +76 -77
- package/dist/video_stream.js.map +1 -1
- package/package.json +18 -9
- package/src/audio_frame.ts +2 -2
- package/src/audio_source.ts +2 -2
- package/src/e2ee.ts +2 -2
- package/src/napi/native.d.ts +5 -5
- package/src/version.ts +1 -1
- package/src/video_frame.ts +1 -1
- package/src/video_source.ts +5 -1
|
@@ -1,324 +1,124 @@
|
|
|
1
|
-
// Copyright 2023 LiveKit, Inc.
|
|
2
|
-
//
|
|
3
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
// you may not use this file except in compliance with the License.
|
|
5
|
-
// You may obtain a copy of the License at
|
|
6
|
-
//
|
|
7
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
//
|
|
9
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
// See the License for the specific language governing permissions and
|
|
13
|
-
// limitations under the License.
|
|
14
1
|
import { enumDesc, fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
15
2
|
import { file_handle } from "./handle_pb.js";
|
|
16
3
|
import { file_track } from "./track_pb.js";
|
|
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
|
-
* Describes the message livekit.proto.AudioStreamInfo.
|
|
138
|
-
* Use `create(AudioStreamInfoSchema)` to create a new message.
|
|
139
|
-
*/
|
|
140
|
-
export const AudioStreamInfoSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 23);
|
|
141
|
-
/**
|
|
142
|
-
* Describes the message livekit.proto.OwnedAudioStream.
|
|
143
|
-
* Use `create(OwnedAudioStreamSchema)` to create a new message.
|
|
144
|
-
*/
|
|
145
|
-
export const OwnedAudioStreamSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 24);
|
|
146
|
-
/**
|
|
147
|
-
* Describes the message livekit.proto.AudioStreamEvent.
|
|
148
|
-
* Use `create(AudioStreamEventSchema)` to create a new message.
|
|
149
|
-
*/
|
|
150
|
-
export const AudioStreamEventSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 25);
|
|
151
|
-
/**
|
|
152
|
-
* Describes the message livekit.proto.AudioFrameReceived.
|
|
153
|
-
* Use `create(AudioFrameReceivedSchema)` to create a new message.
|
|
154
|
-
*/
|
|
155
|
-
export const AudioFrameReceivedSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 26);
|
|
156
|
-
/**
|
|
157
|
-
* Describes the message livekit.proto.AudioStreamEOS.
|
|
158
|
-
* Use `create(AudioStreamEOSSchema)` to create a new message.
|
|
159
|
-
*/
|
|
160
|
-
export const AudioStreamEOSSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 27);
|
|
161
|
-
/**
|
|
162
|
-
* Describes the message livekit.proto.AudioSourceOptions.
|
|
163
|
-
* Use `create(AudioSourceOptionsSchema)` to create a new message.
|
|
164
|
-
*/
|
|
165
|
-
export const AudioSourceOptionsSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 28);
|
|
166
|
-
/**
|
|
167
|
-
* Describes the message livekit.proto.AudioSourceInfo.
|
|
168
|
-
* Use `create(AudioSourceInfoSchema)` to create a new message.
|
|
169
|
-
*/
|
|
170
|
-
export const AudioSourceInfoSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 29);
|
|
171
|
-
/**
|
|
172
|
-
* Describes the message livekit.proto.OwnedAudioSource.
|
|
173
|
-
* Use `create(OwnedAudioSourceSchema)` to create a new message.
|
|
174
|
-
*/
|
|
175
|
-
export const OwnedAudioSourceSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 30);
|
|
176
|
-
/**
|
|
177
|
-
* Describes the message livekit.proto.AudioResamplerInfo.
|
|
178
|
-
* Use `create(AudioResamplerInfoSchema)` to create a new message.
|
|
179
|
-
*/
|
|
180
|
-
export const AudioResamplerInfoSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 31);
|
|
181
|
-
/**
|
|
182
|
-
* Describes the message livekit.proto.OwnedAudioResampler.
|
|
183
|
-
* Use `create(OwnedAudioResamplerSchema)` to create a new message.
|
|
184
|
-
*/
|
|
185
|
-
export const OwnedAudioResamplerSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 32);
|
|
186
|
-
/**
|
|
187
|
-
* Describes the message livekit.proto.SoxResamplerInfo.
|
|
188
|
-
* Use `create(SoxResamplerInfoSchema)` to create a new message.
|
|
189
|
-
*/
|
|
190
|
-
export const SoxResamplerInfoSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 33);
|
|
191
|
-
/**
|
|
192
|
-
* Describes the message livekit.proto.OwnedSoxResampler.
|
|
193
|
-
* Use `create(OwnedSoxResamplerSchema)` to create a new message.
|
|
194
|
-
*/
|
|
195
|
-
export const OwnedSoxResamplerSchema = /*@__PURE__*/ messageDesc(file_audio_frame, 34);
|
|
196
|
-
/**
|
|
197
|
-
* @generated from enum livekit.proto.SoxResamplerDataType
|
|
198
|
-
*/
|
|
199
|
-
export var SoxResamplerDataType;
|
|
200
|
-
(function (SoxResamplerDataType) {
|
|
201
|
-
/**
|
|
202
|
-
* TODO(theomonnom): support other datatypes (shouldn't really be needed)
|
|
203
|
-
*
|
|
204
|
-
* @generated from enum value: SOXR_DATATYPE_INT16I = 0;
|
|
205
|
-
*/
|
|
206
|
-
SoxResamplerDataType[SoxResamplerDataType["SOXR_DATATYPE_INT16I"] = 0] = "SOXR_DATATYPE_INT16I";
|
|
207
|
-
/**
|
|
208
|
-
* @generated from enum value: SOXR_DATATYPE_INT16S = 1;
|
|
209
|
-
*/
|
|
210
|
-
SoxResamplerDataType[SoxResamplerDataType["SOXR_DATATYPE_INT16S"] = 1] = "SOXR_DATATYPE_INT16S";
|
|
211
|
-
})(SoxResamplerDataType || (SoxResamplerDataType = {}));
|
|
212
|
-
/**
|
|
213
|
-
* Describes the enum livekit.proto.SoxResamplerDataType.
|
|
214
|
-
*/
|
|
215
|
-
export const SoxResamplerDataTypeSchema = /*@__PURE__*/ enumDesc(file_audio_frame, 0);
|
|
216
|
-
/**
|
|
217
|
-
* @generated from enum livekit.proto.SoxQualityRecipe
|
|
218
|
-
*/
|
|
219
|
-
export var SoxQualityRecipe;
|
|
220
|
-
(function (SoxQualityRecipe) {
|
|
221
|
-
/**
|
|
222
|
-
* @generated from enum value: SOXR_QUALITY_QUICK = 0;
|
|
223
|
-
*/
|
|
224
|
-
SoxQualityRecipe[SoxQualityRecipe["SOXR_QUALITY_QUICK"] = 0] = "SOXR_QUALITY_QUICK";
|
|
225
|
-
/**
|
|
226
|
-
* @generated from enum value: SOXR_QUALITY_LOW = 1;
|
|
227
|
-
*/
|
|
228
|
-
SoxQualityRecipe[SoxQualityRecipe["SOXR_QUALITY_LOW"] = 1] = "SOXR_QUALITY_LOW";
|
|
229
|
-
/**
|
|
230
|
-
* @generated from enum value: SOXR_QUALITY_MEDIUM = 2;
|
|
231
|
-
*/
|
|
232
|
-
SoxQualityRecipe[SoxQualityRecipe["SOXR_QUALITY_MEDIUM"] = 2] = "SOXR_QUALITY_MEDIUM";
|
|
233
|
-
/**
|
|
234
|
-
* @generated from enum value: SOXR_QUALITY_HIGH = 3;
|
|
235
|
-
*/
|
|
236
|
-
SoxQualityRecipe[SoxQualityRecipe["SOXR_QUALITY_HIGH"] = 3] = "SOXR_QUALITY_HIGH";
|
|
237
|
-
/**
|
|
238
|
-
* @generated from enum value: SOXR_QUALITY_VERYHIGH = 4;
|
|
239
|
-
*/
|
|
240
|
-
SoxQualityRecipe[SoxQualityRecipe["SOXR_QUALITY_VERYHIGH"] = 4] = "SOXR_QUALITY_VERYHIGH";
|
|
241
|
-
})(SoxQualityRecipe || (SoxQualityRecipe = {}));
|
|
242
|
-
/**
|
|
243
|
-
* Describes the enum livekit.proto.SoxQualityRecipe.
|
|
244
|
-
*/
|
|
245
|
-
export const SoxQualityRecipeSchema = /*@__PURE__*/ enumDesc(file_audio_frame, 1);
|
|
246
|
-
/**
|
|
247
|
-
* @generated from enum livekit.proto.SoxFlagBits
|
|
248
|
-
*/
|
|
249
|
-
export var SoxFlagBits;
|
|
250
|
-
(function (SoxFlagBits) {
|
|
251
|
-
/**
|
|
252
|
-
* 1 << 0
|
|
253
|
-
*
|
|
254
|
-
* @generated from enum value: SOXR_ROLLOFF_SMALL = 0;
|
|
255
|
-
*/
|
|
256
|
-
SoxFlagBits[SoxFlagBits["SOXR_ROLLOFF_SMALL"] = 0] = "SOXR_ROLLOFF_SMALL";
|
|
257
|
-
/**
|
|
258
|
-
* 1 << 1
|
|
259
|
-
*
|
|
260
|
-
* @generated from enum value: SOXR_ROLLOFF_MEDIUM = 1;
|
|
261
|
-
*/
|
|
262
|
-
SoxFlagBits[SoxFlagBits["SOXR_ROLLOFF_MEDIUM"] = 1] = "SOXR_ROLLOFF_MEDIUM";
|
|
263
|
-
/**
|
|
264
|
-
* 1 << 2
|
|
265
|
-
*
|
|
266
|
-
* @generated from enum value: SOXR_ROLLOFF_NONE = 2;
|
|
267
|
-
*/
|
|
268
|
-
SoxFlagBits[SoxFlagBits["SOXR_ROLLOFF_NONE"] = 2] = "SOXR_ROLLOFF_NONE";
|
|
269
|
-
/**
|
|
270
|
-
* 1 << 3
|
|
271
|
-
*
|
|
272
|
-
* @generated from enum value: SOXR_HIGH_PREC_CLOCK = 3;
|
|
273
|
-
*/
|
|
274
|
-
SoxFlagBits[SoxFlagBits["SOXR_HIGH_PREC_CLOCK"] = 3] = "SOXR_HIGH_PREC_CLOCK";
|
|
275
|
-
/**
|
|
276
|
-
* 1 << 4
|
|
277
|
-
*
|
|
278
|
-
* @generated from enum value: SOXR_DOUBLE_PRECISION = 4;
|
|
279
|
-
*/
|
|
280
|
-
SoxFlagBits[SoxFlagBits["SOXR_DOUBLE_PRECISION"] = 4] = "SOXR_DOUBLE_PRECISION";
|
|
281
|
-
/**
|
|
282
|
-
* 1 << 5
|
|
283
|
-
*
|
|
284
|
-
* @generated from enum value: SOXR_VR = 5;
|
|
285
|
-
*/
|
|
286
|
-
SoxFlagBits[SoxFlagBits["SOXR_VR"] = 5] = "SOXR_VR";
|
|
287
|
-
})(SoxFlagBits || (SoxFlagBits = {}));
|
|
288
|
-
/**
|
|
289
|
-
* Describes the enum livekit.proto.SoxFlagBits.
|
|
290
|
-
*/
|
|
291
|
-
export const SoxFlagBitsSchema = /*@__PURE__*/ enumDesc(file_audio_frame, 2);
|
|
292
|
-
/**
|
|
293
|
-
* @generated from enum livekit.proto.AudioStreamType
|
|
294
|
-
*/
|
|
295
|
-
export var AudioStreamType;
|
|
296
|
-
(function (AudioStreamType) {
|
|
297
|
-
/**
|
|
298
|
-
* @generated from enum value: AUDIO_STREAM_NATIVE = 0;
|
|
299
|
-
*/
|
|
300
|
-
AudioStreamType[AudioStreamType["AUDIO_STREAM_NATIVE"] = 0] = "AUDIO_STREAM_NATIVE";
|
|
301
|
-
/**
|
|
302
|
-
* @generated from enum value: AUDIO_STREAM_HTML = 1;
|
|
303
|
-
*/
|
|
304
|
-
AudioStreamType[AudioStreamType["AUDIO_STREAM_HTML"] = 1] = "AUDIO_STREAM_HTML";
|
|
305
|
-
})(AudioStreamType || (AudioStreamType = {}));
|
|
306
|
-
/**
|
|
307
|
-
* Describes the enum livekit.proto.AudioStreamType.
|
|
308
|
-
*/
|
|
309
|
-
export const AudioStreamTypeSchema = /*@__PURE__*/ enumDesc(file_audio_frame, 3);
|
|
310
|
-
/**
|
|
311
|
-
* @generated from enum livekit.proto.AudioSourceType
|
|
312
|
-
*/
|
|
313
|
-
export var AudioSourceType;
|
|
314
|
-
(function (AudioSourceType) {
|
|
315
|
-
/**
|
|
316
|
-
* @generated from enum value: AUDIO_SOURCE_NATIVE = 0;
|
|
317
|
-
*/
|
|
318
|
-
AudioSourceType[AudioSourceType["AUDIO_SOURCE_NATIVE"] = 0] = "AUDIO_SOURCE_NATIVE";
|
|
319
|
-
})(AudioSourceType || (AudioSourceType = {}));
|
|
320
|
-
/**
|
|
321
|
-
* Describes the enum livekit.proto.AudioSourceType.
|
|
322
|
-
*/
|
|
323
|
-
export const AudioSourceTypeSchema = /*@__PURE__*/ enumDesc(file_audio_frame, 4);
|
|
4
|
+
const file_audio_frame = /* @__PURE__ */ fileDesc("ChFhdWRpb19mcmFtZS5wcm90bxINbGl2ZWtpdC5wcm90byKGAQoVTmV3QXVkaW9TdHJlYW1SZXF1ZXN0EhQKDHRyYWNrX2hhbmRsZRgBIAIoBBIsCgR0eXBlGAIgAigOMh4ubGl2ZWtpdC5wcm90by5BdWRpb1N0cmVhbVR5cGUSEwoLc2FtcGxlX3JhdGUYAyABKA0SFAoMbnVtX2NoYW5uZWxzGAQgASgNIkkKFk5ld0F1ZGlvU3RyZWFtUmVzcG9uc2USLwoGc3RyZWFtGAEgAigLMh8ubGl2ZWtpdC5wcm90by5Pd25lZEF1ZGlvU3RyZWFtIsoBCiFBdWRpb1N0cmVhbUZyb21QYXJ0aWNpcGFudFJlcXVlc3QSGgoScGFydGljaXBhbnRfaGFuZGxlGAEgAigEEiwKBHR5cGUYAiACKA4yHi5saXZla2l0LnByb3RvLkF1ZGlvU3RyZWFtVHlwZRIwCgx0cmFja19zb3VyY2UYAyABKA4yGi5saXZla2l0LnByb3RvLlRyYWNrU291cmNlEhMKC3NhbXBsZV9yYXRlGAUgASgNEhQKDG51bV9jaGFubmVscxgGIAEoDSJVCiJBdWRpb1N0cmVhbUZyb21QYXJ0aWNpcGFudFJlc3BvbnNlEi8KBnN0cmVhbRgBIAIoCzIfLmxpdmVraXQucHJvdG8uT3duZWRBdWRpb1N0cmVhbSK7AQoVTmV3QXVkaW9Tb3VyY2VSZXF1ZXN0EiwKBHR5cGUYASACKA4yHi5saXZla2l0LnByb3RvLkF1ZGlvU291cmNlVHlwZRIyCgdvcHRpb25zGAIgASgLMiEubGl2ZWtpdC5wcm90by5BdWRpb1NvdXJjZU9wdGlvbnMSEwoLc2FtcGxlX3JhdGUYAyACKA0SFAoMbnVtX2NoYW5uZWxzGAQgAigNEhUKDXF1ZXVlX3NpemVfbXMYBSABKA0iSQoWTmV3QXVkaW9Tb3VyY2VSZXNwb25zZRIvCgZzb3VyY2UYASACKAsyHy5saXZla2l0LnByb3RvLk93bmVkQXVkaW9Tb3VyY2UiZgoYQ2FwdHVyZUF1ZGlvRnJhbWVSZXF1ZXN0EhUKDXNvdXJjZV9oYW5kbGUYASACKAQSMwoGYnVmZmVyGAIgAigLMiMubGl2ZWtpdC5wcm90by5BdWRpb0ZyYW1lQnVmZmVySW5mbyItChlDYXB0dXJlQXVkaW9GcmFtZVJlc3BvbnNlEhAKCGFzeW5jX2lkGAEgAigEIjwKGUNhcHR1cmVBdWRpb0ZyYW1lQ2FsbGJhY2sSEAoIYXN5bmNfaWQYASACKAQSDQoFZXJyb3IYAiABKAkiMAoXQ2xlYXJBdWRpb0J1ZmZlclJlcXVlc3QSFQoNc291cmNlX2hhbmRsZRgBIAIoBCIaChhDbGVhckF1ZGlvQnVmZmVyUmVzcG9uc2UiGgoYTmV3QXVkaW9SZXNhbXBsZXJSZXF1ZXN0IlIKGU5ld0F1ZGlvUmVzYW1wbGVyUmVzcG9uc2USNQoJcmVzYW1wbGVyGAEgAigLMiIubGl2ZWtpdC5wcm90by5Pd25lZEF1ZGlvUmVzYW1wbGVyIpMBChdSZW1peEFuZFJlc2FtcGxlUmVxdWVzdBIYChByZXNhbXBsZXJfaGFuZGxlGAEgAigEEjMKBmJ1ZmZlchgCIAIoCzIjLmxpdmVraXQucHJvdG8uQXVkaW9GcmFtZUJ1ZmZlckluZm8SFAoMbnVtX2NoYW5uZWxzGAMgAigNEhMKC3NhbXBsZV9yYXRlGAQgAigNIlAKGFJlbWl4QW5kUmVzYW1wbGVSZXNwb25zZRI0CgZidWZmZXIYASACKAsyJC5saXZla2l0LnByb3RvLk93bmVkQXVkaW9GcmFtZUJ1ZmZlciKcAgoWTmV3U294UmVzYW1wbGVyUmVxdWVzdBISCgppbnB1dF9yYXRlGAEgAigBEhMKC291dHB1dF9yYXRlGAIgAigBEhQKDG51bV9jaGFubmVscxgDIAIoDRI8Cg9pbnB1dF9kYXRhX3R5cGUYBCACKA4yIy5saXZla2l0LnByb3RvLlNveFJlc2FtcGxlckRhdGFUeXBlEj0KEG91dHB1dF9kYXRhX3R5cGUYBSACKA4yIy5saXZla2l0LnByb3RvLlNveFJlc2FtcGxlckRhdGFUeXBlEjcKDnF1YWxpdHlfcmVjaXBlGAYgAigOMh8ubGl2ZWtpdC5wcm90by5Tb3hRdWFsaXR5UmVjaXBlEg0KBWZsYWdzGAcgASgNImwKF05ld1NveFJlc2FtcGxlclJlc3BvbnNlEjUKCXJlc2FtcGxlchgBIAEoCzIgLmxpdmVraXQucHJvdG8uT3duZWRTb3hSZXNhbXBsZXJIABIPCgVlcnJvchgCIAEoCUgAQgkKB21lc3NhZ2UiUwoXUHVzaFNveFJlc2FtcGxlclJlcXVlc3QSGAoQcmVzYW1wbGVyX2hhbmRsZRgBIAIoBBIQCghkYXRhX3B0chgCIAIoBBIMCgRzaXplGAMgAigNIksKGFB1c2hTb3hSZXNhbXBsZXJSZXNwb25zZRISCgpvdXRwdXRfcHRyGAEgAigEEgwKBHNpemUYAiACKA0SDQoFZXJyb3IYAyABKAkiNAoYRmx1c2hTb3hSZXNhbXBsZXJSZXF1ZXN0EhgKEHJlc2FtcGxlcl9oYW5kbGUYASACKAQiTAoZRmx1c2hTb3hSZXNhbXBsZXJSZXNwb25zZRISCgpvdXRwdXRfcHRyGAEgAigEEgwKBHNpemUYAiACKA0SDQoFZXJyb3IYAyABKAkicAoUQXVkaW9GcmFtZUJ1ZmZlckluZm8SEAoIZGF0YV9wdHIYASACKAQSFAoMbnVtX2NoYW5uZWxzGAIgAigNEhMKC3NhbXBsZV9yYXRlGAMgAigNEhsKE3NhbXBsZXNfcGVyX2NoYW5uZWwYBCACKA0ieQoVT3duZWRBdWRpb0ZyYW1lQnVmZmVyEi0KBmhhbmRsZRgBIAIoCzIdLmxpdmVraXQucHJvdG8uRmZpT3duZWRIYW5kbGUSMQoEaW5mbxgCIAIoCzIjLmxpdmVraXQucHJvdG8uQXVkaW9GcmFtZUJ1ZmZlckluZm8iPwoPQXVkaW9TdHJlYW1JbmZvEiwKBHR5cGUYASACKA4yHi5saXZla2l0LnByb3RvLkF1ZGlvU3RyZWFtVHlwZSJvChBPd25lZEF1ZGlvU3RyZWFtEi0KBmhhbmRsZRgBIAIoCzIdLmxpdmVraXQucHJvdG8uRmZpT3duZWRIYW5kbGUSLAoEaW5mbxgCIAIoCzIeLmxpdmVraXQucHJvdG8uQXVkaW9TdHJlYW1JbmZvIp8BChBBdWRpb1N0cmVhbUV2ZW50EhUKDXN0cmVhbV9oYW5kbGUYASACKAQSOwoOZnJhbWVfcmVjZWl2ZWQYAiABKAsyIS5saXZla2l0LnByb3RvLkF1ZGlvRnJhbWVSZWNlaXZlZEgAEiwKA2VvcxgDIAEoCzIdLmxpdmVraXQucHJvdG8uQXVkaW9TdHJlYW1FT1NIAEIJCgdtZXNzYWdlIkkKEkF1ZGlvRnJhbWVSZWNlaXZlZBIzCgVmcmFtZRgBIAIoCzIkLmxpdmVraXQucHJvdG8uT3duZWRBdWRpb0ZyYW1lQnVmZmVyIhAKDkF1ZGlvU3RyZWFtRU9TImUKEkF1ZGlvU291cmNlT3B0aW9ucxIZChFlY2hvX2NhbmNlbGxhdGlvbhgBIAIoCBIZChFub2lzZV9zdXBwcmVzc2lvbhgCIAIoCBIZChFhdXRvX2dhaW5fY29udHJvbBgDIAIoCCI/Cg9BdWRpb1NvdXJjZUluZm8SLAoEdHlwZRgCIAIoDjIeLmxpdmVraXQucHJvdG8uQXVkaW9Tb3VyY2VUeXBlIm8KEE93bmVkQXVkaW9Tb3VyY2USLQoGaGFuZGxlGAEgAigLMh0ubGl2ZWtpdC5wcm90by5GZmlPd25lZEhhbmRsZRIsCgRpbmZvGAIgAigLMh4ubGl2ZWtpdC5wcm90by5BdWRpb1NvdXJjZUluZm8iFAoSQXVkaW9SZXNhbXBsZXJJbmZvInUKE093bmVkQXVkaW9SZXNhbXBsZXISLQoGaGFuZGxlGAEgAigLMh0ubGl2ZWtpdC5wcm90by5GZmlPd25lZEhhbmRsZRIvCgRpbmZvGAIgAigLMiEubGl2ZWtpdC5wcm90by5BdWRpb1Jlc2FtcGxlckluZm8iEgoQU294UmVzYW1wbGVySW5mbyJxChFPd25lZFNveFJlc2FtcGxlchItCgZoYW5kbGUYASACKAsyHS5saXZla2l0LnByb3RvLkZmaU93bmVkSGFuZGxlEi0KBGluZm8YAiACKAsyHy5saXZla2l0LnByb3RvLlNveFJlc2FtcGxlckluZm8qSgoUU294UmVzYW1wbGVyRGF0YVR5cGUSGAoUU09YUl9EQVRBVFlQRV9JTlQxNkkQABIYChRTT1hSX0RBVEFUWVBFX0lOVDE2UxABKosBChBTb3hRdWFsaXR5UmVjaXBlEhYKElNPWFJfUVVBTElUWV9RVUlDSxAAEhQKEFNPWFJfUVVBTElUWV9MT1cQARIXChNTT1hSX1FVQUxJVFlfTUVESVVNEAISFQoRU09YUl9RVUFMSVRZX0hJR0gQAxIZChVTT1hSX1FVQUxJVFlfVkVSWUhJR0gQBCqXAQoLU294RmxhZ0JpdHMSFgoSU09YUl9ST0xMT0ZGX1NNQUxMEAASFwoTU09YUl9ST0xMT0ZGX01FRElVTRABEhUKEVNPWFJfUk9MTE9GRl9OT05FEAISGAoUU09YUl9ISUdIX1BSRUNfQ0xPQ0sQAxIZChVTT1hSX0RPVUJMRV9QUkVDSVNJT04QBBILCgdTT1hSX1ZSEAUqQQoPQXVkaW9TdHJlYW1UeXBlEhcKE0FVRElPX1NUUkVBTV9OQVRJVkUQABIVChFBVURJT19TVFJFQU1fSFRNTBABKioKD0F1ZGlvU291cmNlVHlwZRIXChNBVURJT19TT1VSQ0VfTkFUSVZFEABCEKoCDUxpdmVLaXQuUHJvdG8", [file_handle, file_track]);
|
|
5
|
+
const NewAudioStreamRequestSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 0);
|
|
6
|
+
const NewAudioStreamResponseSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 1);
|
|
7
|
+
const AudioStreamFromParticipantRequestSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 2);
|
|
8
|
+
const AudioStreamFromParticipantResponseSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 3);
|
|
9
|
+
const NewAudioSourceRequestSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 4);
|
|
10
|
+
const NewAudioSourceResponseSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 5);
|
|
11
|
+
const CaptureAudioFrameRequestSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 6);
|
|
12
|
+
const CaptureAudioFrameResponseSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 7);
|
|
13
|
+
const CaptureAudioFrameCallbackSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 8);
|
|
14
|
+
const ClearAudioBufferRequestSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 9);
|
|
15
|
+
const ClearAudioBufferResponseSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 10);
|
|
16
|
+
const NewAudioResamplerRequestSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 11);
|
|
17
|
+
const NewAudioResamplerResponseSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 12);
|
|
18
|
+
const RemixAndResampleRequestSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 13);
|
|
19
|
+
const RemixAndResampleResponseSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 14);
|
|
20
|
+
const NewSoxResamplerRequestSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 15);
|
|
21
|
+
const NewSoxResamplerResponseSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 16);
|
|
22
|
+
const PushSoxResamplerRequestSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 17);
|
|
23
|
+
const PushSoxResamplerResponseSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 18);
|
|
24
|
+
const FlushSoxResamplerRequestSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 19);
|
|
25
|
+
const FlushSoxResamplerResponseSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 20);
|
|
26
|
+
const AudioFrameBufferInfoSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 21);
|
|
27
|
+
const OwnedAudioFrameBufferSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 22);
|
|
28
|
+
const AudioStreamInfoSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 23);
|
|
29
|
+
const OwnedAudioStreamSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 24);
|
|
30
|
+
const AudioStreamEventSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 25);
|
|
31
|
+
const AudioFrameReceivedSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 26);
|
|
32
|
+
const AudioStreamEOSSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 27);
|
|
33
|
+
const AudioSourceOptionsSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 28);
|
|
34
|
+
const AudioSourceInfoSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 29);
|
|
35
|
+
const OwnedAudioSourceSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 30);
|
|
36
|
+
const AudioResamplerInfoSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 31);
|
|
37
|
+
const OwnedAudioResamplerSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 32);
|
|
38
|
+
const SoxResamplerInfoSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 33);
|
|
39
|
+
const OwnedSoxResamplerSchema = /* @__PURE__ */ messageDesc(file_audio_frame, 34);
|
|
40
|
+
var SoxResamplerDataType = /* @__PURE__ */ ((SoxResamplerDataType2) => {
|
|
41
|
+
SoxResamplerDataType2[SoxResamplerDataType2["SOXR_DATATYPE_INT16I"] = 0] = "SOXR_DATATYPE_INT16I";
|
|
42
|
+
SoxResamplerDataType2[SoxResamplerDataType2["SOXR_DATATYPE_INT16S"] = 1] = "SOXR_DATATYPE_INT16S";
|
|
43
|
+
return SoxResamplerDataType2;
|
|
44
|
+
})(SoxResamplerDataType || {});
|
|
45
|
+
const SoxResamplerDataTypeSchema = /* @__PURE__ */ enumDesc(file_audio_frame, 0);
|
|
46
|
+
var SoxQualityRecipe = /* @__PURE__ */ ((SoxQualityRecipe2) => {
|
|
47
|
+
SoxQualityRecipe2[SoxQualityRecipe2["SOXR_QUALITY_QUICK"] = 0] = "SOXR_QUALITY_QUICK";
|
|
48
|
+
SoxQualityRecipe2[SoxQualityRecipe2["SOXR_QUALITY_LOW"] = 1] = "SOXR_QUALITY_LOW";
|
|
49
|
+
SoxQualityRecipe2[SoxQualityRecipe2["SOXR_QUALITY_MEDIUM"] = 2] = "SOXR_QUALITY_MEDIUM";
|
|
50
|
+
SoxQualityRecipe2[SoxQualityRecipe2["SOXR_QUALITY_HIGH"] = 3] = "SOXR_QUALITY_HIGH";
|
|
51
|
+
SoxQualityRecipe2[SoxQualityRecipe2["SOXR_QUALITY_VERYHIGH"] = 4] = "SOXR_QUALITY_VERYHIGH";
|
|
52
|
+
return SoxQualityRecipe2;
|
|
53
|
+
})(SoxQualityRecipe || {});
|
|
54
|
+
const SoxQualityRecipeSchema = /* @__PURE__ */ enumDesc(file_audio_frame, 1);
|
|
55
|
+
var SoxFlagBits = /* @__PURE__ */ ((SoxFlagBits2) => {
|
|
56
|
+
SoxFlagBits2[SoxFlagBits2["SOXR_ROLLOFF_SMALL"] = 0] = "SOXR_ROLLOFF_SMALL";
|
|
57
|
+
SoxFlagBits2[SoxFlagBits2["SOXR_ROLLOFF_MEDIUM"] = 1] = "SOXR_ROLLOFF_MEDIUM";
|
|
58
|
+
SoxFlagBits2[SoxFlagBits2["SOXR_ROLLOFF_NONE"] = 2] = "SOXR_ROLLOFF_NONE";
|
|
59
|
+
SoxFlagBits2[SoxFlagBits2["SOXR_HIGH_PREC_CLOCK"] = 3] = "SOXR_HIGH_PREC_CLOCK";
|
|
60
|
+
SoxFlagBits2[SoxFlagBits2["SOXR_DOUBLE_PRECISION"] = 4] = "SOXR_DOUBLE_PRECISION";
|
|
61
|
+
SoxFlagBits2[SoxFlagBits2["SOXR_VR"] = 5] = "SOXR_VR";
|
|
62
|
+
return SoxFlagBits2;
|
|
63
|
+
})(SoxFlagBits || {});
|
|
64
|
+
const SoxFlagBitsSchema = /* @__PURE__ */ enumDesc(file_audio_frame, 2);
|
|
65
|
+
var AudioStreamType = /* @__PURE__ */ ((AudioStreamType2) => {
|
|
66
|
+
AudioStreamType2[AudioStreamType2["AUDIO_STREAM_NATIVE"] = 0] = "AUDIO_STREAM_NATIVE";
|
|
67
|
+
AudioStreamType2[AudioStreamType2["AUDIO_STREAM_HTML"] = 1] = "AUDIO_STREAM_HTML";
|
|
68
|
+
return AudioStreamType2;
|
|
69
|
+
})(AudioStreamType || {});
|
|
70
|
+
const AudioStreamTypeSchema = /* @__PURE__ */ enumDesc(file_audio_frame, 3);
|
|
71
|
+
var AudioSourceType = /* @__PURE__ */ ((AudioSourceType2) => {
|
|
72
|
+
AudioSourceType2[AudioSourceType2["AUDIO_SOURCE_NATIVE"] = 0] = "AUDIO_SOURCE_NATIVE";
|
|
73
|
+
return AudioSourceType2;
|
|
74
|
+
})(AudioSourceType || {});
|
|
75
|
+
const AudioSourceTypeSchema = /* @__PURE__ */ enumDesc(file_audio_frame, 4);
|
|
76
|
+
export {
|
|
77
|
+
AudioFrameBufferInfoSchema,
|
|
78
|
+
AudioFrameReceivedSchema,
|
|
79
|
+
AudioResamplerInfoSchema,
|
|
80
|
+
AudioSourceInfoSchema,
|
|
81
|
+
AudioSourceOptionsSchema,
|
|
82
|
+
AudioSourceType,
|
|
83
|
+
AudioSourceTypeSchema,
|
|
84
|
+
AudioStreamEOSSchema,
|
|
85
|
+
AudioStreamEventSchema,
|
|
86
|
+
AudioStreamFromParticipantRequestSchema,
|
|
87
|
+
AudioStreamFromParticipantResponseSchema,
|
|
88
|
+
AudioStreamInfoSchema,
|
|
89
|
+
AudioStreamType,
|
|
90
|
+
AudioStreamTypeSchema,
|
|
91
|
+
CaptureAudioFrameCallbackSchema,
|
|
92
|
+
CaptureAudioFrameRequestSchema,
|
|
93
|
+
CaptureAudioFrameResponseSchema,
|
|
94
|
+
ClearAudioBufferRequestSchema,
|
|
95
|
+
ClearAudioBufferResponseSchema,
|
|
96
|
+
FlushSoxResamplerRequestSchema,
|
|
97
|
+
FlushSoxResamplerResponseSchema,
|
|
98
|
+
NewAudioResamplerRequestSchema,
|
|
99
|
+
NewAudioResamplerResponseSchema,
|
|
100
|
+
NewAudioSourceRequestSchema,
|
|
101
|
+
NewAudioSourceResponseSchema,
|
|
102
|
+
NewAudioStreamRequestSchema,
|
|
103
|
+
NewAudioStreamResponseSchema,
|
|
104
|
+
NewSoxResamplerRequestSchema,
|
|
105
|
+
NewSoxResamplerResponseSchema,
|
|
106
|
+
OwnedAudioFrameBufferSchema,
|
|
107
|
+
OwnedAudioResamplerSchema,
|
|
108
|
+
OwnedAudioSourceSchema,
|
|
109
|
+
OwnedAudioStreamSchema,
|
|
110
|
+
OwnedSoxResamplerSchema,
|
|
111
|
+
PushSoxResamplerRequestSchema,
|
|
112
|
+
PushSoxResamplerResponseSchema,
|
|
113
|
+
RemixAndResampleRequestSchema,
|
|
114
|
+
RemixAndResampleResponseSchema,
|
|
115
|
+
SoxFlagBits,
|
|
116
|
+
SoxFlagBitsSchema,
|
|
117
|
+
SoxQualityRecipe,
|
|
118
|
+
SoxQualityRecipeSchema,
|
|
119
|
+
SoxResamplerDataType,
|
|
120
|
+
SoxResamplerDataTypeSchema,
|
|
121
|
+
SoxResamplerInfoSchema,
|
|
122
|
+
file_audio_frame
|
|
123
|
+
};
|
|
324
124
|
//# sourceMappingURL=audio_frame_pb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"audio_frame_pb.js","sourceRoot":"","sources":["../../src/proto/audio_frame_pb.ts"],"names":[],"mappings":"AAAA,+BAA+B;AAC/B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAOjC,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE/E,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAE7C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAG3C;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAY,aAAa,CACpD,QAAQ,CAAC,yhKAAyhK,EAAE,CAAC,WAAW,EAAE,UAAU,CAAC,CAAC,CAAC;AA8BjkK;;;GAGG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAsC,aAAa,CACzF,WAAW,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAYnC;;;GAGG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAuC,aAAa,CAC3F,WAAW,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAgCnC;;;GAGG;AACH,MAAM,CAAC,MAAM,uCAAuC,GAAkD,aAAa,CACjH,WAAW,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAYnC;;;GAGG;AACH,MAAM,CAAC,MAAM,wCAAwC,GAAmD,aAAa,CACnH,WAAW,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAkCnC;;;GAGG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAsC,aAAa,CACzF,WAAW,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAYnC;;;GAGG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAuC,aAAa,CAC3F,WAAW,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAoBnC;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAYnC;;;GAGG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAA0C,aAAa,CACjG,WAAW,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAiBnC;;;GAGG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAA0C,aAAa,CACjG,WAAW,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAYnC;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAQnC;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAUpC;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAYpC;;;GAGG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAA0C,aAAa,CACjG,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AA6BpC;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAYpC;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AA0CpC;;;GAGG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAuC,aAAa,CAC3F,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAwBpC;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AA0BpC;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AA0BpC;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAYpC;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AA0BpC;;;GAGG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAA0C,aAAa,CACjG,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AA6BpC;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAqC,aAAa,CACvF,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAiBpC;;;GAGG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAsC,aAAa,CACzF,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAYpC;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAgC,aAAa,CAC7E,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAiBpC;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AA6BpC;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAYpC;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAQpC;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAsBpC;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAYpC;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAgC,aAAa,CAC7E,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAiBpC;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAQpC;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAiBpC;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAQpC;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAiBpC;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,gBAAgB,EAAE,EAAE,CAAC,CAAC;AAEpC;;GAEG;AACH,MAAM,CAAN,IAAY,oBAYX;AAZD,WAAY,oBAAoB;IAC9B;;;;OAIG;IACH,+FAAwB,CAAA;IAExB;;OAEG;IACH,+FAAwB,CAAA;AAC1B,CAAC,EAZW,oBAAoB,KAApB,oBAAoB,QAY/B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAkC,aAAa,CACpF,QAAQ,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAEhC;;GAEG;AACH,MAAM,CAAN,IAAY,gBAyBX;AAzBD,WAAY,gBAAgB;IAC1B;;OAEG;IACH,mFAAsB,CAAA;IAEtB;;OAEG;IACH,+EAAoB,CAAA;IAEpB;;OAEG;IACH,qFAAuB,CAAA;IAEvB;;OAEG;IACH,iFAAqB,CAAA;IAErB;;OAEG;IACH,yFAAyB,CAAA;AAC3B,CAAC,EAzBW,gBAAgB,KAAhB,gBAAgB,QAyB3B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAA8B,aAAa,CAC5E,QAAQ,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAEhC;;GAEG;AACH,MAAM,CAAN,IAAY,WA0CX;AA1CD,WAAY,WAAW;IACrB;;;;OAIG;IACH,yEAAsB,CAAA;IAEtB;;;;OAIG;IACH,2EAAuB,CAAA;IAEvB;;;;OAIG;IACH,uEAAqB,CAAA;IAErB;;;;OAIG;IACH,6EAAwB,CAAA;IAExB;;;;OAIG;IACH,+EAAyB,CAAA;IAEzB;;;;OAIG;IACH,mDAAW,CAAA;AACb,CAAC,EA1CW,WAAW,KAAX,WAAW,QA0CtB;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAyB,aAAa,CAClE,QAAQ,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAEhC;;GAEG;AACH,MAAM,CAAN,IAAY,eAUX;AAVD,WAAY,eAAe;IACzB;;OAEG;IACH,mFAAuB,CAAA;IAEvB;;OAEG;IACH,+EAAqB,CAAA;AACvB,CAAC,EAVW,eAAe,KAAf,eAAe,QAU1B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAA6B,aAAa,CAC1E,QAAQ,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAEhC;;GAEG;AACH,MAAM,CAAN,IAAY,eAKX;AALD,WAAY,eAAe;IACzB;;OAEG;IACH,mFAAuB,CAAA;AACzB,CAAC,EALW,eAAe,KAAf,eAAe,QAK1B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAA6B,aAAa,CAC1E,QAAQ,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"sources":["../../src/proto/audio_frame_pb.ts"],"sourcesContent":["// Copyright 2023 LiveKit, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n// @generated by protoc-gen-es v2.2.0 with parameter \"target=ts,import_extension=js\"\n// @generated from file audio_frame.proto (package livekit.proto, syntax proto2)\n/* eslint-disable */\n\nimport type { GenEnum, GenFile, GenMessage } from \"@bufbuild/protobuf/codegenv1\";\nimport { enumDesc, fileDesc, messageDesc } from \"@bufbuild/protobuf/codegenv1\";\nimport type { FfiOwnedHandle } from \"./handle_pb.js\";\nimport { file_handle } from \"./handle_pb.js\";\nimport type { TrackSource } from \"./track_pb.js\";\nimport { file_track } from \"./track_pb.js\";\nimport type { Message } from \"@bufbuild/protobuf\";\n\n/**\n * Describes the file audio_frame.proto.\n */\nexport const file_audio_frame: GenFile = /*@__PURE__*/\n fileDesc(\"ChFhdWRpb19mcmFtZS5wcm90bxINbGl2ZWtpdC5wcm90byKGAQoVTmV3QXVkaW9TdHJlYW1SZXF1ZXN0EhQKDHRyYWNrX2hhbmRsZRgBIAIoBBIsCgR0eXBlGAIgAigOMh4ubGl2ZWtpdC5wcm90by5BdWRpb1N0cmVhbVR5cGUSEwoLc2FtcGxlX3JhdGUYAyABKA0SFAoMbnVtX2NoYW5uZWxzGAQgASgNIkkKFk5ld0F1ZGlvU3RyZWFtUmVzcG9uc2USLwoGc3RyZWFtGAEgAigLMh8ubGl2ZWtpdC5wcm90by5Pd25lZEF1ZGlvU3RyZWFtIsoBCiFBdWRpb1N0cmVhbUZyb21QYXJ0aWNpcGFudFJlcXVlc3QSGgoScGFydGljaXBhbnRfaGFuZGxlGAEgAigEEiwKBHR5cGUYAiACKA4yHi5saXZla2l0LnByb3RvLkF1ZGlvU3RyZWFtVHlwZRIwCgx0cmFja19zb3VyY2UYAyABKA4yGi5saXZla2l0LnByb3RvLlRyYWNrU291cmNlEhMKC3NhbXBsZV9yYXRlGAUgASgNEhQKDG51bV9jaGFubmVscxgGIAEoDSJVCiJBdWRpb1N0cmVhbUZyb21QYXJ0aWNpcGFudFJlc3BvbnNlEi8KBnN0cmVhbRgBIAIoCzIfLmxpdmVraXQucHJvdG8uT3duZWRBdWRpb1N0cmVhbSK7AQoVTmV3QXVkaW9Tb3VyY2VSZXF1ZXN0EiwKBHR5cGUYASACKA4yHi5saXZla2l0LnByb3RvLkF1ZGlvU291cmNlVHlwZRIyCgdvcHRpb25zGAIgASgLMiEubGl2ZWtpdC5wcm90by5BdWRpb1NvdXJjZU9wdGlvbnMSEwoLc2FtcGxlX3JhdGUYAyACKA0SFAoMbnVtX2NoYW5uZWxzGAQgAigNEhUKDXF1ZXVlX3NpemVfbXMYBSABKA0iSQoWTmV3QXVkaW9Tb3VyY2VSZXNwb25zZRIvCgZzb3VyY2UYASACKAsyHy5saXZla2l0LnByb3RvLk93bmVkQXVkaW9Tb3VyY2UiZgoYQ2FwdHVyZUF1ZGlvRnJhbWVSZXF1ZXN0EhUKDXNvdXJjZV9oYW5kbGUYASACKAQSMwoGYnVmZmVyGAIgAigLMiMubGl2ZWtpdC5wcm90by5BdWRpb0ZyYW1lQnVmZmVySW5mbyItChlDYXB0dXJlQXVkaW9GcmFtZVJlc3BvbnNlEhAKCGFzeW5jX2lkGAEgAigEIjwKGUNhcHR1cmVBdWRpb0ZyYW1lQ2FsbGJhY2sSEAoIYXN5bmNfaWQYASACKAQSDQoFZXJyb3IYAiABKAkiMAoXQ2xlYXJBdWRpb0J1ZmZlclJlcXVlc3QSFQoNc291cmNlX2hhbmRsZRgBIAIoBCIaChhDbGVhckF1ZGlvQnVmZmVyUmVzcG9uc2UiGgoYTmV3QXVkaW9SZXNhbXBsZXJSZXF1ZXN0IlIKGU5ld0F1ZGlvUmVzYW1wbGVyUmVzcG9uc2USNQoJcmVzYW1wbGVyGAEgAigLMiIubGl2ZWtpdC5wcm90by5Pd25lZEF1ZGlvUmVzYW1wbGVyIpMBChdSZW1peEFuZFJlc2FtcGxlUmVxdWVzdBIYChByZXNhbXBsZXJfaGFuZGxlGAEgAigEEjMKBmJ1ZmZlchgCIAIoCzIjLmxpdmVraXQucHJvdG8uQXVkaW9GcmFtZUJ1ZmZlckluZm8SFAoMbnVtX2NoYW5uZWxzGAMgAigNEhMKC3NhbXBsZV9yYXRlGAQgAigNIlAKGFJlbWl4QW5kUmVzYW1wbGVSZXNwb25zZRI0CgZidWZmZXIYASACKAsyJC5saXZla2l0LnByb3RvLk93bmVkQXVkaW9GcmFtZUJ1ZmZlciKcAgoWTmV3U294UmVzYW1wbGVyUmVxdWVzdBISCgppbnB1dF9yYXRlGAEgAigBEhMKC291dHB1dF9yYXRlGAIgAigBEhQKDG51bV9jaGFubmVscxgDIAIoDRI8Cg9pbnB1dF9kYXRhX3R5cGUYBCACKA4yIy5saXZla2l0LnByb3RvLlNveFJlc2FtcGxlckRhdGFUeXBlEj0KEG91dHB1dF9kYXRhX3R5cGUYBSACKA4yIy5saXZla2l0LnByb3RvLlNveFJlc2FtcGxlckRhdGFUeXBlEjcKDnF1YWxpdHlfcmVjaXBlGAYgAigOMh8ubGl2ZWtpdC5wcm90by5Tb3hRdWFsaXR5UmVjaXBlEg0KBWZsYWdzGAcgASgNImwKF05ld1NveFJlc2FtcGxlclJlc3BvbnNlEjUKCXJlc2FtcGxlchgBIAEoCzIgLmxpdmVraXQucHJvdG8uT3duZWRTb3hSZXNhbXBsZXJIABIPCgVlcnJvchgCIAEoCUgAQgkKB21lc3NhZ2UiUwoXUHVzaFNveFJlc2FtcGxlclJlcXVlc3QSGAoQcmVzYW1wbGVyX2hhbmRsZRgBIAIoBBIQCghkYXRhX3B0chgCIAIoBBIMCgRzaXplGAMgAigNIksKGFB1c2hTb3hSZXNhbXBsZXJSZXNwb25zZRISCgpvdXRwdXRfcHRyGAEgAigEEgwKBHNpemUYAiACKA0SDQoFZXJyb3IYAyABKAkiNAoYRmx1c2hTb3hSZXNhbXBsZXJSZXF1ZXN0EhgKEHJlc2FtcGxlcl9oYW5kbGUYASACKAQiTAoZRmx1c2hTb3hSZXNhbXBsZXJSZXNwb25zZRISCgpvdXRwdXRfcHRyGAEgAigEEgwKBHNpemUYAiACKA0SDQoFZXJyb3IYAyABKAkicAoUQXVkaW9GcmFtZUJ1ZmZlckluZm8SEAoIZGF0YV9wdHIYASACKAQSFAoMbnVtX2NoYW5uZWxzGAIgAigNEhMKC3NhbXBsZV9yYXRlGAMgAigNEhsKE3NhbXBsZXNfcGVyX2NoYW5uZWwYBCACKA0ieQoVT3duZWRBdWRpb0ZyYW1lQnVmZmVyEi0KBmhhbmRsZRgBIAIoCzIdLmxpdmVraXQucHJvdG8uRmZpT3duZWRIYW5kbGUSMQoEaW5mbxgCIAIoCzIjLmxpdmVraXQucHJvdG8uQXVkaW9GcmFtZUJ1ZmZlckluZm8iPwoPQXVkaW9TdHJlYW1JbmZvEiwKBHR5cGUYASACKA4yHi5saXZla2l0LnByb3RvLkF1ZGlvU3RyZWFtVHlwZSJvChBPd25lZEF1ZGlvU3RyZWFtEi0KBmhhbmRsZRgBIAIoCzIdLmxpdmVraXQucHJvdG8uRmZpT3duZWRIYW5kbGUSLAoEaW5mbxgCIAIoCzIeLmxpdmVraXQucHJvdG8uQXVkaW9TdHJlYW1JbmZvIp8BChBBdWRpb1N0cmVhbUV2ZW50EhUKDXN0cmVhbV9oYW5kbGUYASACKAQSOwoOZnJhbWVfcmVjZWl2ZWQYAiABKAsyIS5saXZla2l0LnByb3RvLkF1ZGlvRnJhbWVSZWNlaXZlZEgAEiwKA2VvcxgDIAEoCzIdLmxpdmVraXQucHJvdG8uQXVkaW9TdHJlYW1FT1NIAEIJCgdtZXNzYWdlIkkKEkF1ZGlvRnJhbWVSZWNlaXZlZBIzCgVmcmFtZRgBIAIoCzIkLmxpdmVraXQucHJvdG8uT3duZWRBdWRpb0ZyYW1lQnVmZmVyIhAKDkF1ZGlvU3RyZWFtRU9TImUKEkF1ZGlvU291cmNlT3B0aW9ucxIZChFlY2hvX2NhbmNlbGxhdGlvbhgBIAIoCBIZChFub2lzZV9zdXBwcmVzc2lvbhgCIAIoCBIZChFhdXRvX2dhaW5fY29udHJvbBgDIAIoCCI/Cg9BdWRpb1NvdXJjZUluZm8SLAoEdHlwZRgCIAIoDjIeLmxpdmVraXQucHJvdG8uQXVkaW9Tb3VyY2VUeXBlIm8KEE93bmVkQXVkaW9Tb3VyY2USLQoGaGFuZGxlGAEgAigLMh0ubGl2ZWtpdC5wcm90by5GZmlPd25lZEhhbmRsZRIsCgRpbmZvGAIgAigLMh4ubGl2ZWtpdC5wcm90by5BdWRpb1NvdXJjZUluZm8iFAoSQXVkaW9SZXNhbXBsZXJJbmZvInUKE093bmVkQXVkaW9SZXNhbXBsZXISLQoGaGFuZGxlGAEgAigLMh0ubGl2ZWtpdC5wcm90by5GZmlPd25lZEhhbmRsZRIvCgRpbmZvGAIgAigLMiEubGl2ZWtpdC5wcm90by5BdWRpb1Jlc2FtcGxlckluZm8iEgoQU294UmVzYW1wbGVySW5mbyJxChFPd25lZFNveFJlc2FtcGxlchItCgZoYW5kbGUYASACKAsyHS5saXZla2l0LnByb3RvLkZmaU93bmVkSGFuZGxlEi0KBGluZm8YAiACKAsyHy5saXZla2l0LnByb3RvLlNveFJlc2FtcGxlckluZm8qSgoUU294UmVzYW1wbGVyRGF0YVR5cGUSGAoUU09YUl9EQVRBVFlQRV9JTlQxNkkQABIYChRTT1hSX0RBVEFUWVBFX0lOVDE2UxABKosBChBTb3hRdWFsaXR5UmVjaXBlEhYKElNPWFJfUVVBTElUWV9RVUlDSxAAEhQKEFNPWFJfUVVBTElUWV9MT1cQARIXChNTT1hSX1FVQUxJVFlfTUVESVVNEAISFQoRU09YUl9RVUFMSVRZX0hJR0gQAxIZChVTT1hSX1FVQUxJVFlfVkVSWUhJR0gQBCqXAQoLU294RmxhZ0JpdHMSFgoSU09YUl9ST0xMT0ZGX1NNQUxMEAASFwoTU09YUl9ST0xMT0ZGX01FRElVTRABEhUKEVNPWFJfUk9MTE9GRl9OT05FEAISGAoUU09YUl9ISUdIX1BSRUNfQ0xPQ0sQAxIZChVTT1hSX0RPVUJMRV9QUkVDSVNJT04QBBILCgdTT1hSX1ZSEAUqQQoPQXVkaW9TdHJlYW1UeXBlEhcKE0FVRElPX1NUUkVBTV9OQVRJVkUQABIVChFBVURJT19TVFJFQU1fSFRNTBABKioKD0F1ZGlvU291cmNlVHlwZRIXChNBVURJT19TT1VSQ0VfTkFUSVZFEABCEKoCDUxpdmVLaXQuUHJvdG8\", [file_handle, file_track]);\n\n/**\n * Create a new AudioStream\n * AudioStream is used to receive audio frames from a track\n *\n * @generated from message livekit.proto.NewAudioStreamRequest\n */\nexport type NewAudioStreamRequest = Message<\"livekit.proto.NewAudioStreamRequest\"> & {\n /**\n * @generated from field: required uint64 track_handle = 1;\n */\n trackHandle: bigint;\n\n /**\n * @generated from field: required livekit.proto.AudioStreamType type = 2;\n */\n type: AudioStreamType;\n\n /**\n * @generated from field: optional uint32 sample_rate = 3;\n */\n sampleRate: number;\n\n /**\n * @generated from field: optional uint32 num_channels = 4;\n */\n numChannels: number;\n};\n\n/**\n * Describes the message livekit.proto.NewAudioStreamRequest.\n * Use `create(NewAudioStreamRequestSchema)` to create a new message.\n */\nexport const NewAudioStreamRequestSchema: GenMessage<NewAudioStreamRequest> = /*@__PURE__*/\n messageDesc(file_audio_frame, 0);\n\n/**\n * @generated from message livekit.proto.NewAudioStreamResponse\n */\nexport type NewAudioStreamResponse = Message<\"livekit.proto.NewAudioStreamResponse\"> & {\n /**\n * @generated from field: required livekit.proto.OwnedAudioStream stream = 1;\n */\n stream?: OwnedAudioStream;\n};\n\n/**\n * Describes the message livekit.proto.NewAudioStreamResponse.\n * Use `create(NewAudioStreamResponseSchema)` to create a new message.\n */\nexport const NewAudioStreamResponseSchema: GenMessage<NewAudioStreamResponse> = /*@__PURE__*/\n messageDesc(file_audio_frame, 1);\n\n/**\n * @generated from message livekit.proto.AudioStreamFromParticipantRequest\n */\nexport type AudioStreamFromParticipantRequest = Message<\"livekit.proto.AudioStreamFromParticipantRequest\"> & {\n /**\n * @generated from field: required uint64 participant_handle = 1;\n */\n participantHandle: bigint;\n\n /**\n * @generated from field: required livekit.proto.AudioStreamType type = 2;\n */\n type: AudioStreamType;\n\n /**\n * @generated from field: optional livekit.proto.TrackSource track_source = 3;\n */\n trackSource: TrackSource;\n\n /**\n * @generated from field: optional uint32 sample_rate = 5;\n */\n sampleRate: number;\n\n /**\n * @generated from field: optional uint32 num_channels = 6;\n */\n numChannels: number;\n};\n\n/**\n * Describes the message livekit.proto.AudioStreamFromParticipantRequest.\n * Use `create(AudioStreamFromParticipantRequestSchema)` to create a new message.\n */\nexport const AudioStreamFromParticipantRequestSchema: GenMessage<AudioStreamFromParticipantRequest> = /*@__PURE__*/\n messageDesc(file_audio_frame, 2);\n\n/**\n * @generated from message livekit.proto.AudioStreamFromParticipantResponse\n */\nexport type AudioStreamFromParticipantResponse = Message<\"livekit.proto.AudioStreamFromParticipantResponse\"> & {\n /**\n * @generated from field: required livekit.proto.OwnedAudioStream stream = 1;\n */\n stream?: OwnedAudioStream;\n};\n\n/**\n * Describes the message livekit.proto.AudioStreamFromParticipantResponse.\n * Use `create(AudioStreamFromParticipantResponseSchema)` to create a new message.\n */\nexport const AudioStreamFromParticipantResponseSchema: GenMessage<AudioStreamFromParticipantResponse> = /*@__PURE__*/\n messageDesc(file_audio_frame, 3);\n\n/**\n * Create a new AudioSource\n *\n * @generated from message livekit.proto.NewAudioSourceRequest\n */\nexport type NewAudioSourceRequest = Message<\"livekit.proto.NewAudioSourceRequest\"> & {\n /**\n * @generated from field: required livekit.proto.AudioSourceType type = 1;\n */\n type: AudioSourceType;\n\n /**\n * @generated from field: optional livekit.proto.AudioSourceOptions options = 2;\n */\n options?: AudioSourceOptions;\n\n /**\n * @generated from field: required uint32 sample_rate = 3;\n */\n sampleRate: number;\n\n /**\n * @generated from field: required uint32 num_channels = 4;\n */\n numChannels: number;\n\n /**\n * @generated from field: optional uint32 queue_size_ms = 5;\n */\n queueSizeMs: number;\n};\n\n/**\n * Describes the message livekit.proto.NewAudioSourceRequest.\n * Use `create(NewAudioSourceRequestSchema)` to create a new message.\n */\nexport const NewAudioSourceRequestSchema: GenMessage<NewAudioSourceRequest> = /*@__PURE__*/\n messageDesc(file_audio_frame, 4);\n\n/**\n * @generated from message livekit.proto.NewAudioSourceResponse\n */\nexport type NewAudioSourceResponse = Message<\"livekit.proto.NewAudioSourceResponse\"> & {\n /**\n * @generated from field: required livekit.proto.OwnedAudioSource source = 1;\n */\n source?: OwnedAudioSource;\n};\n\n/**\n * Describes the message livekit.proto.NewAudioSourceResponse.\n * Use `create(NewAudioSourceResponseSchema)` to create a new message.\n */\nexport const NewAudioSourceResponseSchema: GenMessage<NewAudioSourceResponse> = /*@__PURE__*/\n messageDesc(file_audio_frame, 5);\n\n/**\n * Push a frame to an AudioSource \n * The data provided must be available as long as the client receive the callback.\n *\n * @generated from message livekit.proto.CaptureAudioFrameRequest\n */\nexport type CaptureAudioFrameRequest = Message<\"livekit.proto.CaptureAudioFrameRequest\"> & {\n /**\n * @generated from field: required uint64 source_handle = 1;\n */\n sourceHandle: bigint;\n\n /**\n * @generated from field: required livekit.proto.AudioFrameBufferInfo buffer = 2;\n */\n buffer?: AudioFrameBufferInfo;\n};\n\n/**\n * Describes the message livekit.proto.CaptureAudioFrameRequest.\n * Use `create(CaptureAudioFrameRequestSchema)` to create a new message.\n */\nexport const CaptureAudioFrameRequestSchema: GenMessage<CaptureAudioFrameRequest> = /*@__PURE__*/\n messageDesc(file_audio_frame, 6);\n\n/**\n * @generated from message livekit.proto.CaptureAudioFrameResponse\n */\nexport type CaptureAudioFrameResponse = Message<\"livekit.proto.CaptureAudioFrameResponse\"> & {\n /**\n * @generated from field: required uint64 async_id = 1;\n */\n asyncId: bigint;\n};\n\n/**\n * Describes the message livekit.proto.CaptureAudioFrameResponse.\n * Use `create(CaptureAudioFrameResponseSchema)` to create a new message.\n */\nexport const CaptureAudioFrameResponseSchema: GenMessage<CaptureAudioFrameResponse> = /*@__PURE__*/\n messageDesc(file_audio_frame, 7);\n\n/**\n * @generated from message livekit.proto.CaptureAudioFrameCallback\n */\nexport type CaptureAudioFrameCallback = Message<\"livekit.proto.CaptureAudioFrameCallback\"> & {\n /**\n * @generated from field: required uint64 async_id = 1;\n */\n asyncId: bigint;\n\n /**\n * @generated from field: optional string error = 2;\n */\n error: string;\n};\n\n/**\n * Describes the message livekit.proto.CaptureAudioFrameCallback.\n * Use `create(CaptureAudioFrameCallbackSchema)` to create a new message.\n */\nexport const CaptureAudioFrameCallbackSchema: GenMessage<CaptureAudioFrameCallback> = /*@__PURE__*/\n messageDesc(file_audio_frame, 8);\n\n/**\n * @generated from message livekit.proto.ClearAudioBufferRequest\n */\nexport type ClearAudioBufferRequest = Message<\"livekit.proto.ClearAudioBufferRequest\"> & {\n /**\n * @generated from field: required uint64 source_handle = 1;\n */\n sourceHandle: bigint;\n};\n\n/**\n * Describes the message livekit.proto.ClearAudioBufferRequest.\n * Use `create(ClearAudioBufferRequestSchema)` to create a new message.\n */\nexport const ClearAudioBufferRequestSchema: GenMessage<ClearAudioBufferRequest> = /*@__PURE__*/\n messageDesc(file_audio_frame, 9);\n\n/**\n * @generated from message livekit.proto.ClearAudioBufferResponse\n */\nexport type ClearAudioBufferResponse = Message<\"livekit.proto.ClearAudioBufferResponse\"> & {\n};\n\n/**\n * Describes the message livekit.proto.ClearAudioBufferResponse.\n * Use `create(ClearAudioBufferResponseSchema)` to create a new message.\n */\nexport const ClearAudioBufferResponseSchema: GenMessage<ClearAudioBufferResponse> = /*@__PURE__*/\n messageDesc(file_audio_frame, 10);\n\n/**\n * Create a new AudioResampler\n *\n * @generated from message livekit.proto.NewAudioResamplerRequest\n */\nexport type NewAudioResamplerRequest = Message<\"livekit.proto.NewAudioResamplerRequest\"> & {\n};\n\n/**\n * Describes the message livekit.proto.NewAudioResamplerRequest.\n * Use `create(NewAudioResamplerRequestSchema)` to create a new message.\n */\nexport const NewAudioResamplerRequestSchema: GenMessage<NewAudioResamplerRequest> = /*@__PURE__*/\n messageDesc(file_audio_frame, 11);\n\n/**\n * @generated from message livekit.proto.NewAudioResamplerResponse\n */\nexport type NewAudioResamplerResponse = Message<\"livekit.proto.NewAudioResamplerResponse\"> & {\n /**\n * @generated from field: required livekit.proto.OwnedAudioResampler resampler = 1;\n */\n resampler?: OwnedAudioResampler;\n};\n\n/**\n * Describes the message livekit.proto.NewAudioResamplerResponse.\n * Use `create(NewAudioResamplerResponseSchema)` to create a new message.\n */\nexport const NewAudioResamplerResponseSchema: GenMessage<NewAudioResamplerResponse> = /*@__PURE__*/\n messageDesc(file_audio_frame, 12);\n\n/**\n * Remix and resample an audio frame\n *\n * @generated from message livekit.proto.RemixAndResampleRequest\n */\nexport type RemixAndResampleRequest = Message<\"livekit.proto.RemixAndResampleRequest\"> & {\n /**\n * @generated from field: required uint64 resampler_handle = 1;\n */\n resamplerHandle: bigint;\n\n /**\n * @generated from field: required livekit.proto.AudioFrameBufferInfo buffer = 2;\n */\n buffer?: AudioFrameBufferInfo;\n\n /**\n * @generated from field: required uint32 num_channels = 3;\n */\n numChannels: number;\n\n /**\n * @generated from field: required uint32 sample_rate = 4;\n */\n sampleRate: number;\n};\n\n/**\n * Describes the message livekit.proto.RemixAndResampleRequest.\n * Use `create(RemixAndResampleRequestSchema)` to create a new message.\n */\nexport const RemixAndResampleRequestSchema: GenMessage<RemixAndResampleRequest> = /*@__PURE__*/\n messageDesc(file_audio_frame, 13);\n\n/**\n * @generated from message livekit.proto.RemixAndResampleResponse\n */\nexport type RemixAndResampleResponse = Message<\"livekit.proto.RemixAndResampleResponse\"> & {\n /**\n * @generated from field: required livekit.proto.OwnedAudioFrameBuffer buffer = 1;\n */\n buffer?: OwnedAudioFrameBuffer;\n};\n\n/**\n * Describes the message livekit.proto.RemixAndResampleResponse.\n * Use `create(RemixAndResampleResponseSchema)` to create a new message.\n */\nexport const RemixAndResampleResponseSchema: GenMessage<RemixAndResampleResponse> = /*@__PURE__*/\n messageDesc(file_audio_frame, 14);\n\n/**\n * @generated from message livekit.proto.NewSoxResamplerRequest\n */\nexport type NewSoxResamplerRequest = Message<\"livekit.proto.NewSoxResamplerRequest\"> & {\n /**\n * @generated from field: required double input_rate = 1;\n */\n inputRate: number;\n\n /**\n * @generated from field: required double output_rate = 2;\n */\n outputRate: number;\n\n /**\n * @generated from field: required uint32 num_channels = 3;\n */\n numChannels: number;\n\n /**\n * @generated from field: required livekit.proto.SoxResamplerDataType input_data_type = 4;\n */\n inputDataType: SoxResamplerDataType;\n\n /**\n * @generated from field: required livekit.proto.SoxResamplerDataType output_data_type = 5;\n */\n outputDataType: SoxResamplerDataType;\n\n /**\n * @generated from field: required livekit.proto.SoxQualityRecipe quality_recipe = 6;\n */\n qualityRecipe: SoxQualityRecipe;\n\n /**\n * @generated from field: optional uint32 flags = 7;\n */\n flags: number;\n};\n\n/**\n * Describes the message livekit.proto.NewSoxResamplerRequest.\n * Use `create(NewSoxResamplerRequestSchema)` to create a new message.\n */\nexport const NewSoxResamplerRequestSchema: GenMessage<NewSoxResamplerRequest> = /*@__PURE__*/\n messageDesc(file_audio_frame, 15);\n\n/**\n * @generated from message livekit.proto.NewSoxResamplerResponse\n */\nexport type NewSoxResamplerResponse = Message<\"livekit.proto.NewSoxResamplerResponse\"> & {\n /**\n * @generated from oneof livekit.proto.NewSoxResamplerResponse.message\n */\n message: {\n /**\n * @generated from field: livekit.proto.OwnedSoxResampler resampler = 1;\n */\n value: OwnedSoxResampler;\n case: \"resampler\";\n } | {\n /**\n * @generated from field: string error = 2;\n */\n value: string;\n case: \"error\";\n } | { case: undefined; value?: undefined };\n};\n\n/**\n * Describes the message livekit.proto.NewSoxResamplerResponse.\n * Use `create(NewSoxResamplerResponseSchema)` to create a new message.\n */\nexport const NewSoxResamplerResponseSchema: GenMessage<NewSoxResamplerResponse> = /*@__PURE__*/\n messageDesc(file_audio_frame, 16);\n\n/**\n * @generated from message livekit.proto.PushSoxResamplerRequest\n */\nexport type PushSoxResamplerRequest = Message<\"livekit.proto.PushSoxResamplerRequest\"> & {\n /**\n * @generated from field: required uint64 resampler_handle = 1;\n */\n resamplerHandle: bigint;\n\n /**\n * *const i16\n *\n * @generated from field: required uint64 data_ptr = 2;\n */\n dataPtr: bigint;\n\n /**\n * in bytes\n *\n * @generated from field: required uint32 size = 3;\n */\n size: number;\n};\n\n/**\n * Describes the message livekit.proto.PushSoxResamplerRequest.\n * Use `create(PushSoxResamplerRequestSchema)` to create a new message.\n */\nexport const PushSoxResamplerRequestSchema: GenMessage<PushSoxResamplerRequest> = /*@__PURE__*/\n messageDesc(file_audio_frame, 17);\n\n/**\n * @generated from message livekit.proto.PushSoxResamplerResponse\n */\nexport type PushSoxResamplerResponse = Message<\"livekit.proto.PushSoxResamplerResponse\"> & {\n /**\n * *const i16 (could be null)\n *\n * @generated from field: required uint64 output_ptr = 1;\n */\n outputPtr: bigint;\n\n /**\n * in bytes\n *\n * @generated from field: required uint32 size = 2;\n */\n size: number;\n\n /**\n * @generated from field: optional string error = 3;\n */\n error: string;\n};\n\n/**\n * Describes the message livekit.proto.PushSoxResamplerResponse.\n * Use `create(PushSoxResamplerResponseSchema)` to create a new message.\n */\nexport const PushSoxResamplerResponseSchema: GenMessage<PushSoxResamplerResponse> = /*@__PURE__*/\n messageDesc(file_audio_frame, 18);\n\n/**\n * @generated from message livekit.proto.FlushSoxResamplerRequest\n */\nexport type FlushSoxResamplerRequest = Message<\"livekit.proto.FlushSoxResamplerRequest\"> & {\n /**\n * @generated from field: required uint64 resampler_handle = 1;\n */\n resamplerHandle: bigint;\n};\n\n/**\n * Describes the message livekit.proto.FlushSoxResamplerRequest.\n * Use `create(FlushSoxResamplerRequestSchema)` to create a new message.\n */\nexport const FlushSoxResamplerRequestSchema: GenMessage<FlushSoxResamplerRequest> = /*@__PURE__*/\n messageDesc(file_audio_frame, 19);\n\n/**\n * @generated from message livekit.proto.FlushSoxResamplerResponse\n */\nexport type FlushSoxResamplerResponse = Message<\"livekit.proto.FlushSoxResamplerResponse\"> & {\n /**\n * *const i16 (could be null)\n *\n * @generated from field: required uint64 output_ptr = 1;\n */\n outputPtr: bigint;\n\n /**\n * in bytes\n *\n * @generated from field: required uint32 size = 2;\n */\n size: number;\n\n /**\n * @generated from field: optional string error = 3;\n */\n error: string;\n};\n\n/**\n * Describes the message livekit.proto.FlushSoxResamplerResponse.\n * Use `create(FlushSoxResamplerResponseSchema)` to create a new message.\n */\nexport const FlushSoxResamplerResponseSchema: GenMessage<FlushSoxResamplerResponse> = /*@__PURE__*/\n messageDesc(file_audio_frame, 20);\n\n/**\n * @generated from message livekit.proto.AudioFrameBufferInfo\n */\nexport type AudioFrameBufferInfo = Message<\"livekit.proto.AudioFrameBufferInfo\"> & {\n /**\n * *const i16\n *\n * @generated from field: required uint64 data_ptr = 1;\n */\n dataPtr: bigint;\n\n /**\n * @generated from field: required uint32 num_channels = 2;\n */\n numChannels: number;\n\n /**\n * @generated from field: required uint32 sample_rate = 3;\n */\n sampleRate: number;\n\n /**\n * @generated from field: required uint32 samples_per_channel = 4;\n */\n samplesPerChannel: number;\n};\n\n/**\n * Describes the message livekit.proto.AudioFrameBufferInfo.\n * Use `create(AudioFrameBufferInfoSchema)` to create a new message.\n */\nexport const AudioFrameBufferInfoSchema: GenMessage<AudioFrameBufferInfo> = /*@__PURE__*/\n messageDesc(file_audio_frame, 21);\n\n/**\n * @generated from message livekit.proto.OwnedAudioFrameBuffer\n */\nexport type OwnedAudioFrameBuffer = Message<\"livekit.proto.OwnedAudioFrameBuffer\"> & {\n /**\n * @generated from field: required livekit.proto.FfiOwnedHandle handle = 1;\n */\n handle?: FfiOwnedHandle;\n\n /**\n * @generated from field: required livekit.proto.AudioFrameBufferInfo info = 2;\n */\n info?: AudioFrameBufferInfo;\n};\n\n/**\n * Describes the message livekit.proto.OwnedAudioFrameBuffer.\n * Use `create(OwnedAudioFrameBufferSchema)` to create a new message.\n */\nexport const OwnedAudioFrameBufferSchema: GenMessage<OwnedAudioFrameBuffer> = /*@__PURE__*/\n messageDesc(file_audio_frame, 22);\n\n/**\n * @generated from message livekit.proto.AudioStreamInfo\n */\nexport type AudioStreamInfo = Message<\"livekit.proto.AudioStreamInfo\"> & {\n /**\n * @generated from field: required livekit.proto.AudioStreamType type = 1;\n */\n type: AudioStreamType;\n};\n\n/**\n * Describes the message livekit.proto.AudioStreamInfo.\n * Use `create(AudioStreamInfoSchema)` to create a new message.\n */\nexport const AudioStreamInfoSchema: GenMessage<AudioStreamInfo> = /*@__PURE__*/\n messageDesc(file_audio_frame, 23);\n\n/**\n * @generated from message livekit.proto.OwnedAudioStream\n */\nexport type OwnedAudioStream = Message<\"livekit.proto.OwnedAudioStream\"> & {\n /**\n * @generated from field: required livekit.proto.FfiOwnedHandle handle = 1;\n */\n handle?: FfiOwnedHandle;\n\n /**\n * @generated from field: required livekit.proto.AudioStreamInfo info = 2;\n */\n info?: AudioStreamInfo;\n};\n\n/**\n * Describes the message livekit.proto.OwnedAudioStream.\n * Use `create(OwnedAudioStreamSchema)` to create a new message.\n */\nexport const OwnedAudioStreamSchema: GenMessage<OwnedAudioStream> = /*@__PURE__*/\n messageDesc(file_audio_frame, 24);\n\n/**\n * @generated from message livekit.proto.AudioStreamEvent\n */\nexport type AudioStreamEvent = Message<\"livekit.proto.AudioStreamEvent\"> & {\n /**\n * @generated from field: required uint64 stream_handle = 1;\n */\n streamHandle: bigint;\n\n /**\n * @generated from oneof livekit.proto.AudioStreamEvent.message\n */\n message: {\n /**\n * @generated from field: livekit.proto.AudioFrameReceived frame_received = 2;\n */\n value: AudioFrameReceived;\n case: \"frameReceived\";\n } | {\n /**\n * @generated from field: livekit.proto.AudioStreamEOS eos = 3;\n */\n value: AudioStreamEOS;\n case: \"eos\";\n } | { case: undefined; value?: undefined };\n};\n\n/**\n * Describes the message livekit.proto.AudioStreamEvent.\n * Use `create(AudioStreamEventSchema)` to create a new message.\n */\nexport const AudioStreamEventSchema: GenMessage<AudioStreamEvent> = /*@__PURE__*/\n messageDesc(file_audio_frame, 25);\n\n/**\n * @generated from message livekit.proto.AudioFrameReceived\n */\nexport type AudioFrameReceived = Message<\"livekit.proto.AudioFrameReceived\"> & {\n /**\n * @generated from field: required livekit.proto.OwnedAudioFrameBuffer frame = 1;\n */\n frame?: OwnedAudioFrameBuffer;\n};\n\n/**\n * Describes the message livekit.proto.AudioFrameReceived.\n * Use `create(AudioFrameReceivedSchema)` to create a new message.\n */\nexport const AudioFrameReceivedSchema: GenMessage<AudioFrameReceived> = /*@__PURE__*/\n messageDesc(file_audio_frame, 26);\n\n/**\n * @generated from message livekit.proto.AudioStreamEOS\n */\nexport type AudioStreamEOS = Message<\"livekit.proto.AudioStreamEOS\"> & {\n};\n\n/**\n * Describes the message livekit.proto.AudioStreamEOS.\n * Use `create(AudioStreamEOSSchema)` to create a new message.\n */\nexport const AudioStreamEOSSchema: GenMessage<AudioStreamEOS> = /*@__PURE__*/\n messageDesc(file_audio_frame, 27);\n\n/**\n * @generated from message livekit.proto.AudioSourceOptions\n */\nexport type AudioSourceOptions = Message<\"livekit.proto.AudioSourceOptions\"> & {\n /**\n * @generated from field: required bool echo_cancellation = 1;\n */\n echoCancellation: boolean;\n\n /**\n * @generated from field: required bool noise_suppression = 2;\n */\n noiseSuppression: boolean;\n\n /**\n * @generated from field: required bool auto_gain_control = 3;\n */\n autoGainControl: boolean;\n};\n\n/**\n * Describes the message livekit.proto.AudioSourceOptions.\n * Use `create(AudioSourceOptionsSchema)` to create a new message.\n */\nexport const AudioSourceOptionsSchema: GenMessage<AudioSourceOptions> = /*@__PURE__*/\n messageDesc(file_audio_frame, 28);\n\n/**\n * @generated from message livekit.proto.AudioSourceInfo\n */\nexport type AudioSourceInfo = Message<\"livekit.proto.AudioSourceInfo\"> & {\n /**\n * @generated from field: required livekit.proto.AudioSourceType type = 2;\n */\n type: AudioSourceType;\n};\n\n/**\n * Describes the message livekit.proto.AudioSourceInfo.\n * Use `create(AudioSourceInfoSchema)` to create a new message.\n */\nexport const AudioSourceInfoSchema: GenMessage<AudioSourceInfo> = /*@__PURE__*/\n messageDesc(file_audio_frame, 29);\n\n/**\n * @generated from message livekit.proto.OwnedAudioSource\n */\nexport type OwnedAudioSource = Message<\"livekit.proto.OwnedAudioSource\"> & {\n /**\n * @generated from field: required livekit.proto.FfiOwnedHandle handle = 1;\n */\n handle?: FfiOwnedHandle;\n\n /**\n * @generated from field: required livekit.proto.AudioSourceInfo info = 2;\n */\n info?: AudioSourceInfo;\n};\n\n/**\n * Describes the message livekit.proto.OwnedAudioSource.\n * Use `create(OwnedAudioSourceSchema)` to create a new message.\n */\nexport const OwnedAudioSourceSchema: GenMessage<OwnedAudioSource> = /*@__PURE__*/\n messageDesc(file_audio_frame, 30);\n\n/**\n * @generated from message livekit.proto.AudioResamplerInfo\n */\nexport type AudioResamplerInfo = Message<\"livekit.proto.AudioResamplerInfo\"> & {\n};\n\n/**\n * Describes the message livekit.proto.AudioResamplerInfo.\n * Use `create(AudioResamplerInfoSchema)` to create a new message.\n */\nexport const AudioResamplerInfoSchema: GenMessage<AudioResamplerInfo> = /*@__PURE__*/\n messageDesc(file_audio_frame, 31);\n\n/**\n * @generated from message livekit.proto.OwnedAudioResampler\n */\nexport type OwnedAudioResampler = Message<\"livekit.proto.OwnedAudioResampler\"> & {\n /**\n * @generated from field: required livekit.proto.FfiOwnedHandle handle = 1;\n */\n handle?: FfiOwnedHandle;\n\n /**\n * @generated from field: required livekit.proto.AudioResamplerInfo info = 2;\n */\n info?: AudioResamplerInfo;\n};\n\n/**\n * Describes the message livekit.proto.OwnedAudioResampler.\n * Use `create(OwnedAudioResamplerSchema)` to create a new message.\n */\nexport const OwnedAudioResamplerSchema: GenMessage<OwnedAudioResampler> = /*@__PURE__*/\n messageDesc(file_audio_frame, 32);\n\n/**\n * @generated from message livekit.proto.SoxResamplerInfo\n */\nexport type SoxResamplerInfo = Message<\"livekit.proto.SoxResamplerInfo\"> & {\n};\n\n/**\n * Describes the message livekit.proto.SoxResamplerInfo.\n * Use `create(SoxResamplerInfoSchema)` to create a new message.\n */\nexport const SoxResamplerInfoSchema: GenMessage<SoxResamplerInfo> = /*@__PURE__*/\n messageDesc(file_audio_frame, 33);\n\n/**\n * @generated from message livekit.proto.OwnedSoxResampler\n */\nexport type OwnedSoxResampler = Message<\"livekit.proto.OwnedSoxResampler\"> & {\n /**\n * @generated from field: required livekit.proto.FfiOwnedHandle handle = 1;\n */\n handle?: FfiOwnedHandle;\n\n /**\n * @generated from field: required livekit.proto.SoxResamplerInfo info = 2;\n */\n info?: SoxResamplerInfo;\n};\n\n/**\n * Describes the message livekit.proto.OwnedSoxResampler.\n * Use `create(OwnedSoxResamplerSchema)` to create a new message.\n */\nexport const OwnedSoxResamplerSchema: GenMessage<OwnedSoxResampler> = /*@__PURE__*/\n messageDesc(file_audio_frame, 34);\n\n/**\n * @generated from enum livekit.proto.SoxResamplerDataType\n */\nexport enum SoxResamplerDataType {\n /**\n * TODO(theomonnom): support other datatypes (shouldn't really be needed)\n *\n * @generated from enum value: SOXR_DATATYPE_INT16I = 0;\n */\n SOXR_DATATYPE_INT16I = 0,\n\n /**\n * @generated from enum value: SOXR_DATATYPE_INT16S = 1;\n */\n SOXR_DATATYPE_INT16S = 1,\n}\n\n/**\n * Describes the enum livekit.proto.SoxResamplerDataType.\n */\nexport const SoxResamplerDataTypeSchema: GenEnum<SoxResamplerDataType> = /*@__PURE__*/\n enumDesc(file_audio_frame, 0);\n\n/**\n * @generated from enum livekit.proto.SoxQualityRecipe\n */\nexport enum SoxQualityRecipe {\n /**\n * @generated from enum value: SOXR_QUALITY_QUICK = 0;\n */\n SOXR_QUALITY_QUICK = 0,\n\n /**\n * @generated from enum value: SOXR_QUALITY_LOW = 1;\n */\n SOXR_QUALITY_LOW = 1,\n\n /**\n * @generated from enum value: SOXR_QUALITY_MEDIUM = 2;\n */\n SOXR_QUALITY_MEDIUM = 2,\n\n /**\n * @generated from enum value: SOXR_QUALITY_HIGH = 3;\n */\n SOXR_QUALITY_HIGH = 3,\n\n /**\n * @generated from enum value: SOXR_QUALITY_VERYHIGH = 4;\n */\n SOXR_QUALITY_VERYHIGH = 4,\n}\n\n/**\n * Describes the enum livekit.proto.SoxQualityRecipe.\n */\nexport const SoxQualityRecipeSchema: GenEnum<SoxQualityRecipe> = /*@__PURE__*/\n enumDesc(file_audio_frame, 1);\n\n/**\n * @generated from enum livekit.proto.SoxFlagBits\n */\nexport enum SoxFlagBits {\n /**\n * 1 << 0\n *\n * @generated from enum value: SOXR_ROLLOFF_SMALL = 0;\n */\n SOXR_ROLLOFF_SMALL = 0,\n\n /**\n * 1 << 1\n *\n * @generated from enum value: SOXR_ROLLOFF_MEDIUM = 1;\n */\n SOXR_ROLLOFF_MEDIUM = 1,\n\n /**\n * 1 << 2\n *\n * @generated from enum value: SOXR_ROLLOFF_NONE = 2;\n */\n SOXR_ROLLOFF_NONE = 2,\n\n /**\n * 1 << 3\n *\n * @generated from enum value: SOXR_HIGH_PREC_CLOCK = 3;\n */\n SOXR_HIGH_PREC_CLOCK = 3,\n\n /**\n * 1 << 4\n *\n * @generated from enum value: SOXR_DOUBLE_PRECISION = 4;\n */\n SOXR_DOUBLE_PRECISION = 4,\n\n /**\n * 1 << 5\n *\n * @generated from enum value: SOXR_VR = 5;\n */\n SOXR_VR = 5,\n}\n\n/**\n * Describes the enum livekit.proto.SoxFlagBits.\n */\nexport const SoxFlagBitsSchema: GenEnum<SoxFlagBits> = /*@__PURE__*/\n enumDesc(file_audio_frame, 2);\n\n/**\n * @generated from enum livekit.proto.AudioStreamType\n */\nexport enum AudioStreamType {\n /**\n * @generated from enum value: AUDIO_STREAM_NATIVE = 0;\n */\n AUDIO_STREAM_NATIVE = 0,\n\n /**\n * @generated from enum value: AUDIO_STREAM_HTML = 1;\n */\n AUDIO_STREAM_HTML = 1,\n}\n\n/**\n * Describes the enum livekit.proto.AudioStreamType.\n */\nexport const AudioStreamTypeSchema: GenEnum<AudioStreamType> = /*@__PURE__*/\n enumDesc(file_audio_frame, 3);\n\n/**\n * @generated from enum livekit.proto.AudioSourceType\n */\nexport enum AudioSourceType {\n /**\n * @generated from enum value: AUDIO_SOURCE_NATIVE = 0;\n */\n AUDIO_SOURCE_NATIVE = 0,\n}\n\n/**\n * Describes the enum livekit.proto.AudioSourceType.\n */\nexport const AudioSourceTypeSchema: GenEnum<AudioSourceType> = /*@__PURE__*/\n enumDesc(file_audio_frame, 4);\n\n"],"mappings":"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","names":["SoxResamplerDataType","SoxQualityRecipe","SoxFlagBits","AudioStreamType","AudioSourceType"]}
|