@mediapipe/tasks-audio 0.1.0-alpha-3 → 0.1.0-alpha-4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediapipe/tasks-audio",
3
- "version": "0.1.0-alpha-3",
3
+ "version": "0.1.0-alpha-4",
4
4
  "description": "MediaPipe Audio Tasks",
5
5
  "main": "audio_bundle.js",
6
6
  "author": "mediapipe@google.com",
@@ -1,4 +1,4 @@
1
- // Build 502698517
1
+ // Build 507782677
2
2
 
3
3
  var ModuleFactory = (() => {
4
4
  var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;
@@ -520,7 +520,7 @@ var tempDouble;
520
520
  var tempI64;
521
521
 
522
522
  var ASM_CONSTS = {
523
- 539338: () => {
523
+ 541827: () => {
524
524
  let init_once = true;
525
525
  if (init_once) {
526
526
  const cachedFindCanvasEventTarget = findCanvasEventTarget;
@@ -546,22 +546,13 @@ var ASM_CONSTS = {
546
546
  init_once = false;
547
547
  }
548
548
  },
549
- 540123: () => {
549
+ 542612: () => {
550
550
  return typeof wasmOffsetConverter !== "undefined";
551
551
  }
552
552
  };
553
553
 
554
- function JsWrapVectorListeners() {
555
- if (!Module._wrapVectorListenerOutput) {
556
- Module._wrapVectorListenerOutput = (outputStreamName, outData, index, length, timestamp) => {
557
- if (Module.vectorListeners) {
558
- const streamName = UTF8ToString(outputStreamName);
559
- if (Module.vectorListeners[streamName]) {
560
- Module.vectorListeners[streamName](outData, index, length, timestamp);
561
- }
562
- }
563
- };
564
- }
554
+ function JsOnEmptyPacketListener(output_stream_name, timestamp) {
555
+ Module._wrapEmptyPacketListenerOutput(output_stream_name, timestamp);
565
556
  }
566
557
 
567
558
  function JsOnSimpleListenerBool(output_stream_name, out_data, timestamp) {
@@ -569,7 +560,7 @@ function JsOnSimpleListenerBool(output_stream_name, out_data, timestamp) {
569
560
  }
570
561
 
571
562
  function JsOnVectorListenerBool(output_stream_name, out_data, index, length, timestamp) {
572
- Module._wrapVectorListenerOutput(output_stream_name, out_data, index, length, timestamp);
563
+ Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
573
564
  }
574
565
 
575
566
  function JsOnSimpleListenerInt(output_stream_name, out_data, timestamp) {
@@ -577,7 +568,7 @@ function JsOnSimpleListenerInt(output_stream_name, out_data, timestamp) {
577
568
  }
578
569
 
579
570
  function JsOnVectorListenerInt(output_stream_name, out_data, index, length, timestamp) {
580
- Module._wrapVectorListenerOutput(output_stream_name, out_data, index, length, timestamp);
571
+ Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
581
572
  }
582
573
 
583
574
  function JsOnSimpleListenerDouble(output_stream_name, out_data, timestamp) {
@@ -585,7 +576,7 @@ function JsOnSimpleListenerDouble(output_stream_name, out_data, timestamp) {
585
576
  }
586
577
 
587
578
  function JsOnVectorListenerDouble(output_stream_name, out_data, index, length, timestamp) {
588
- Module._wrapVectorListenerOutput(output_stream_name, out_data, index, length, timestamp);
579
+ Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
589
580
  }
590
581
 
591
582
  function JsOnSimpleListenerFloat(output_stream_name, out_data, timestamp) {
@@ -593,7 +584,7 @@ function JsOnSimpleListenerFloat(output_stream_name, out_data, timestamp) {
593
584
  }
594
585
 
595
586
  function JsOnVectorListenerFloat(output_stream_name, out_data, index, length, timestamp) {
596
- Module._wrapVectorListenerOutput(output_stream_name, out_data, index, length, timestamp);
587
+ Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
597
588
  }
598
589
 
599
590
  function JsOnSimpleListenerString(output_stream_name, out_data, timestamp) {
@@ -601,21 +592,31 @@ function JsOnSimpleListenerString(output_stream_name, out_data, timestamp) {
601
592
  }
602
593
 
603
594
  function JsOnVectorListenerString(output_stream_name, out_data, index, length, timestamp) {
604
- Module._wrapVectorListenerOutput(output_stream_name, UTF8ToString(out_data), index, length, timestamp);
595
+ Module._wrapSimpleListenerOutput(output_stream_name, UTF8ToString(out_data), index, length, timestamp);
605
596
  }
606
597
 
607
598
  function JsOnVectorListenerProto(output_stream_name, proto_ptr, proto_size, make_deep_copy, index, length, timestamp) {
608
599
  const newProtoArray = make_deep_copy ? Module.HEAPU8.slice(proto_ptr, proto_ptr + proto_size) : new Uint8Array(Module.HEAPU8.buffer, proto_ptr, proto_size);
609
- Module._wrapVectorListenerOutput(output_stream_name, newProtoArray, index, length, timestamp);
600
+ Module._wrapSimpleListenerOutput(output_stream_name, newProtoArray, index, length, timestamp);
610
601
  }
611
602
 
612
603
  function JsWrapSimpleListeners() {
613
604
  if (!Module._wrapSimpleListenerOutput) {
614
- Module._wrapSimpleListenerOutput = (outputStreamName, outData, timestamp) => {
605
+ Module._wrapSimpleListenerOutput = (outputStreamName, ...args) => {
615
606
  if (Module.simpleListeners) {
616
607
  const streamName = UTF8ToString(outputStreamName);
617
608
  if (Module.simpleListeners[streamName]) {
618
- Module.simpleListeners[streamName](outData, timestamp);
609
+ Module.simpleListeners[streamName](...args);
610
+ }
611
+ }
612
+ };
613
+ }
614
+ if (!Module._wrapEmptyPacketListenerOutput) {
615
+ Module._wrapEmptyPacketListenerOutput = (outputStreamName, timestamp) => {
616
+ if (Module.emptyPacketListeners) {
617
+ const streamName = UTF8ToString(outputStreamName);
618
+ if (Module.emptyPacketListeners[streamName]) {
619
+ Module.emptyPacketListeners[streamName](timestamp);
619
620
  }
620
621
  }
621
622
  };
@@ -5960,104 +5961,104 @@ WebGPU.initManagers();
5960
5961
 
5961
5962
  var asmLibraryArg = {
5962
5963
  "Sa": HaveOffsetConverter,
5963
- "Ra": JsOnSimpleListenerBinaryArray,
5964
- "Qa": JsOnSimpleListenerBool,
5965
- "Pa": JsOnSimpleListenerDouble,
5966
- "Oa": JsOnSimpleListenerFloat,
5967
- "Na": JsOnSimpleListenerInt,
5968
- "Ma": JsOnSimpleListenerString,
5969
- "La": JsOnVectorListenerBool,
5970
- "Ka": JsOnVectorListenerDouble,
5971
- "Ja": JsOnVectorListenerFloat,
5972
- "Ia": JsOnVectorListenerInt,
5973
- "Ha": JsOnVectorListenerProto,
5974
- "Ga": JsOnVectorListenerString,
5975
- "e": JsWrapErrorListener,
5976
- "h": JsWrapSimpleListeners,
5977
- "g": JsWrapVectorListeners,
5978
- "K": ___syscall_fcntl64,
5979
- "Fa": ___syscall_ioctl,
5980
- "J": ___syscall_openat,
5981
- "Ea": ___syscall_stat64,
5982
- "za": __dlinit,
5983
- "ya": __dlopen_js,
5984
- "xa": __dlsym_js,
5985
- "wa": __emscripten_get_now_is_monotonic,
5986
- "va": __gmtime_js,
5987
- "ua": __localtime_js,
5988
- "ta": __mktime_js,
5989
- "sa": __mmap_js,
5990
- "ra": __munmap_js,
5991
- "qa": __tzset_js,
5964
+ "Ra": JsOnEmptyPacketListener,
5965
+ "Qa": JsOnSimpleListenerBinaryArray,
5966
+ "Pa": JsOnSimpleListenerBool,
5967
+ "Oa": JsOnSimpleListenerDouble,
5968
+ "Na": JsOnSimpleListenerFloat,
5969
+ "Ma": JsOnSimpleListenerInt,
5970
+ "La": JsOnSimpleListenerString,
5971
+ "Ka": JsOnVectorListenerBool,
5972
+ "Ja": JsOnVectorListenerDouble,
5973
+ "Ia": JsOnVectorListenerFloat,
5974
+ "Ha": JsOnVectorListenerInt,
5975
+ "Ga": JsOnVectorListenerProto,
5976
+ "Fa": JsOnVectorListenerString,
5977
+ "f": JsWrapErrorListener,
5978
+ "b": JsWrapSimpleListeners,
5979
+ "J": ___syscall_fcntl64,
5980
+ "Ea": ___syscall_ioctl,
5981
+ "I": ___syscall_openat,
5982
+ "Da": ___syscall_stat64,
5983
+ "ya": __dlinit,
5984
+ "xa": __dlopen_js,
5985
+ "wa": __dlsym_js,
5986
+ "va": __emscripten_get_now_is_monotonic,
5987
+ "ua": __gmtime_js,
5988
+ "ta": __localtime_js,
5989
+ "sa": __mktime_js,
5990
+ "ra": __mmap_js,
5991
+ "qa": __munmap_js,
5992
+ "pa": __tzset_js,
5992
5993
  "a": _abort,
5993
- "I": _emscripten_asm_const_int,
5994
- "pa": _emscripten_date_now,
5995
- "oa": _emscripten_get_heap_max,
5996
- "d": _emscripten_get_now,
5997
- "na": _emscripten_memcpy_big,
5998
- "ma": _emscripten_pc_get_function,
5999
- "la": _emscripten_resize_heap,
6000
- "ka": _emscripten_stack_snapshot,
6001
- "ja": _emscripten_stack_unwind_buffer,
6002
- "ia": _emscripten_webgl_create_context,
6003
- "ha": _emscripten_webgl_destroy_context,
6004
- "ga": _emscripten_webgl_get_context_attributes,
6005
- "H": _emscripten_webgl_get_current_context,
6006
- "fa": _emscripten_webgl_init_context_attributes,
6007
- "ea": _emscripten_webgl_make_context_current,
6008
- "Da": _environ_get,
6009
- "Ca": _environ_sizes_get,
6010
- "G": _exit,
6011
- "s": _fd_close,
6012
- "Ba": _fd_read,
6013
- "P": _fd_seek,
6014
- "r": _fd_write,
6015
- "da": _getentropy,
6016
- "q": _glActiveTexture,
6017
- "F": _glAttachShader,
6018
- "ca": _glBindAttribLocation,
6019
- "f": _glBindBuffer,
6020
- "m": _glBindFramebuffer,
6021
- "c": _glBindTexture,
6022
- "E": _glBufferData,
6023
- "O": _glClientWaitSync,
6024
- "ba": _glCompileShader,
6025
- "aa": _glCreateProgram,
6026
- "$": _glCreateShader,
6027
- "D": _glDeleteFramebuffers,
6028
- "_": _glDeleteProgram,
6029
- "C": _glDeleteShader,
6030
- "i": _glDeleteSync,
6031
- "B": _glDeleteTextures,
6032
- "A": _glDisableVertexAttribArray,
6033
- "Z": _glDrawArrays,
6034
- "z": _glEnableVertexAttribArray,
6035
- "y": _glFenceSync,
6036
- "l": _glFinish,
6037
- "p": _glFramebufferTexture2D,
6038
- "x": _glGenBuffers,
6039
- "Y": _glGenFramebuffers,
6040
- "o": _glGenTextures,
6041
- "k": _glGetError,
6042
- "w": _glGetIntegerv,
6043
- "v": _glGetString,
6044
- "X": _glGetUniformLocation,
6045
- "W": _glLinkProgram,
6046
- "n": _glPixelStorei,
6047
- "u": _glReadPixels,
6048
- "V": _glShaderSource,
6049
- "U": _glTexImage2D,
6050
- "b": _glTexParameteri,
6051
- "T": _glTexStorage2D,
6052
- "S": _glUniform1i,
6053
- "R": _glUseProgram,
6054
- "t": _glVertexAttribPointer,
6055
- "Q": _glViewport,
6056
- "Aa": _proc_exit,
6057
- "j": _strftime,
6058
- "N": _strftime_l,
6059
- "M": _wgpuTextureDestroy,
6060
- "L": _wgpuTextureRelease
5994
+ "H": _emscripten_asm_const_int,
5995
+ "oa": _emscripten_date_now,
5996
+ "na": _emscripten_get_heap_max,
5997
+ "e": _emscripten_get_now,
5998
+ "ma": _emscripten_memcpy_big,
5999
+ "la": _emscripten_pc_get_function,
6000
+ "ka": _emscripten_resize_heap,
6001
+ "ja": _emscripten_stack_snapshot,
6002
+ "ia": _emscripten_stack_unwind_buffer,
6003
+ "ha": _emscripten_webgl_create_context,
6004
+ "ga": _emscripten_webgl_destroy_context,
6005
+ "fa": _emscripten_webgl_get_context_attributes,
6006
+ "G": _emscripten_webgl_get_current_context,
6007
+ "ea": _emscripten_webgl_init_context_attributes,
6008
+ "da": _emscripten_webgl_make_context_current,
6009
+ "Ca": _environ_get,
6010
+ "Ba": _environ_sizes_get,
6011
+ "F": _exit,
6012
+ "r": _fd_close,
6013
+ "Aa": _fd_read,
6014
+ "O": _fd_seek,
6015
+ "q": _fd_write,
6016
+ "ca": _getentropy,
6017
+ "p": _glActiveTexture,
6018
+ "E": _glAttachShader,
6019
+ "ba": _glBindAttribLocation,
6020
+ "g": _glBindBuffer,
6021
+ "l": _glBindFramebuffer,
6022
+ "d": _glBindTexture,
6023
+ "D": _glBufferData,
6024
+ "N": _glClientWaitSync,
6025
+ "aa": _glCompileShader,
6026
+ "$": _glCreateProgram,
6027
+ "_": _glCreateShader,
6028
+ "C": _glDeleteFramebuffers,
6029
+ "Z": _glDeleteProgram,
6030
+ "B": _glDeleteShader,
6031
+ "h": _glDeleteSync,
6032
+ "A": _glDeleteTextures,
6033
+ "z": _glDisableVertexAttribArray,
6034
+ "Y": _glDrawArrays,
6035
+ "y": _glEnableVertexAttribArray,
6036
+ "x": _glFenceSync,
6037
+ "k": _glFinish,
6038
+ "o": _glFramebufferTexture2D,
6039
+ "w": _glGenBuffers,
6040
+ "X": _glGenFramebuffers,
6041
+ "n": _glGenTextures,
6042
+ "j": _glGetError,
6043
+ "v": _glGetIntegerv,
6044
+ "u": _glGetString,
6045
+ "W": _glGetUniformLocation,
6046
+ "V": _glLinkProgram,
6047
+ "m": _glPixelStorei,
6048
+ "t": _glReadPixels,
6049
+ "U": _glShaderSource,
6050
+ "T": _glTexImage2D,
6051
+ "c": _glTexParameteri,
6052
+ "S": _glTexStorage2D,
6053
+ "R": _glUniform1i,
6054
+ "Q": _glUseProgram,
6055
+ "s": _glVertexAttribPointer,
6056
+ "P": _glViewport,
6057
+ "za": _proc_exit,
6058
+ "i": _strftime,
6059
+ "M": _strftime_l,
6060
+ "L": _wgpuTextureDestroy,
6061
+ "K": _wgpuTextureRelease
6061
6062
  };
6062
6063
 
6063
6064
  var asm = createWasm();
@@ -6258,9 +6259,9 @@ var stackAlloc = Module["stackAlloc"] = function() {
6258
6259
  return (stackAlloc = Module["stackAlloc"] = Module["asm"]["Pb"]).apply(null, arguments);
6259
6260
  };
6260
6261
 
6261
- var ___start_em_js = Module["___start_em_js"] = 535932;
6262
+ var ___start_em_js = Module["___start_em_js"] = 538348;
6262
6263
 
6263
- var ___stop_em_js = Module["___stop_em_js"] = 539338;
6264
+ var ___stop_em_js = Module["___stop_em_js"] = 541827;
6264
6265
 
6265
6266
  Module["addRunDependency"] = addRunDependency;
6266
6267
 
Binary file
@@ -1,4 +1,4 @@
1
- // Build 502698517
1
+ // Build 507782677
2
2
 
3
3
  var ModuleFactory = (() => {
4
4
  var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;
@@ -520,7 +520,7 @@ var tempDouble;
520
520
  var tempI64;
521
521
 
522
522
  var ASM_CONSTS = {
523
- 539722: () => {
523
+ 542147: () => {
524
524
  let init_once = true;
525
525
  if (init_once) {
526
526
  const cachedFindCanvasEventTarget = findCanvasEventTarget;
@@ -546,22 +546,13 @@ var ASM_CONSTS = {
546
546
  init_once = false;
547
547
  }
548
548
  },
549
- 540507: () => {
549
+ 542932: () => {
550
550
  return typeof wasmOffsetConverter !== "undefined";
551
551
  }
552
552
  };
553
553
 
554
- function JsWrapVectorListeners() {
555
- if (!Module._wrapVectorListenerOutput) {
556
- Module._wrapVectorListenerOutput = (outputStreamName, outData, index, length, timestamp) => {
557
- if (Module.vectorListeners) {
558
- const streamName = UTF8ToString(outputStreamName);
559
- if (Module.vectorListeners[streamName]) {
560
- Module.vectorListeners[streamName](outData, index, length, timestamp);
561
- }
562
- }
563
- };
564
- }
554
+ function JsOnEmptyPacketListener(output_stream_name, timestamp) {
555
+ Module._wrapEmptyPacketListenerOutput(output_stream_name, timestamp);
565
556
  }
566
557
 
567
558
  function JsOnSimpleListenerBool(output_stream_name, out_data, timestamp) {
@@ -569,7 +560,7 @@ function JsOnSimpleListenerBool(output_stream_name, out_data, timestamp) {
569
560
  }
570
561
 
571
562
  function JsOnVectorListenerBool(output_stream_name, out_data, index, length, timestamp) {
572
- Module._wrapVectorListenerOutput(output_stream_name, out_data, index, length, timestamp);
563
+ Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
573
564
  }
574
565
 
575
566
  function JsOnSimpleListenerInt(output_stream_name, out_data, timestamp) {
@@ -577,7 +568,7 @@ function JsOnSimpleListenerInt(output_stream_name, out_data, timestamp) {
577
568
  }
578
569
 
579
570
  function JsOnVectorListenerInt(output_stream_name, out_data, index, length, timestamp) {
580
- Module._wrapVectorListenerOutput(output_stream_name, out_data, index, length, timestamp);
571
+ Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
581
572
  }
582
573
 
583
574
  function JsOnSimpleListenerDouble(output_stream_name, out_data, timestamp) {
@@ -585,7 +576,7 @@ function JsOnSimpleListenerDouble(output_stream_name, out_data, timestamp) {
585
576
  }
586
577
 
587
578
  function JsOnVectorListenerDouble(output_stream_name, out_data, index, length, timestamp) {
588
- Module._wrapVectorListenerOutput(output_stream_name, out_data, index, length, timestamp);
579
+ Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
589
580
  }
590
581
 
591
582
  function JsOnSimpleListenerFloat(output_stream_name, out_data, timestamp) {
@@ -593,7 +584,7 @@ function JsOnSimpleListenerFloat(output_stream_name, out_data, timestamp) {
593
584
  }
594
585
 
595
586
  function JsOnVectorListenerFloat(output_stream_name, out_data, index, length, timestamp) {
596
- Module._wrapVectorListenerOutput(output_stream_name, out_data, index, length, timestamp);
587
+ Module._wrapSimpleListenerOutput(output_stream_name, out_data, index, length, timestamp);
597
588
  }
598
589
 
599
590
  function JsOnSimpleListenerString(output_stream_name, out_data, timestamp) {
@@ -601,21 +592,31 @@ function JsOnSimpleListenerString(output_stream_name, out_data, timestamp) {
601
592
  }
602
593
 
603
594
  function JsOnVectorListenerString(output_stream_name, out_data, index, length, timestamp) {
604
- Module._wrapVectorListenerOutput(output_stream_name, UTF8ToString(out_data), index, length, timestamp);
595
+ Module._wrapSimpleListenerOutput(output_stream_name, UTF8ToString(out_data), index, length, timestamp);
605
596
  }
606
597
 
607
598
  function JsOnVectorListenerProto(output_stream_name, proto_ptr, proto_size, make_deep_copy, index, length, timestamp) {
608
599
  const newProtoArray = make_deep_copy ? Module.HEAPU8.slice(proto_ptr, proto_ptr + proto_size) : new Uint8Array(Module.HEAPU8.buffer, proto_ptr, proto_size);
609
- Module._wrapVectorListenerOutput(output_stream_name, newProtoArray, index, length, timestamp);
600
+ Module._wrapSimpleListenerOutput(output_stream_name, newProtoArray, index, length, timestamp);
610
601
  }
611
602
 
612
603
  function JsWrapSimpleListeners() {
613
604
  if (!Module._wrapSimpleListenerOutput) {
614
- Module._wrapSimpleListenerOutput = (outputStreamName, outData, timestamp) => {
605
+ Module._wrapSimpleListenerOutput = (outputStreamName, ...args) => {
615
606
  if (Module.simpleListeners) {
616
607
  const streamName = UTF8ToString(outputStreamName);
617
608
  if (Module.simpleListeners[streamName]) {
618
- Module.simpleListeners[streamName](outData, timestamp);
609
+ Module.simpleListeners[streamName](...args);
610
+ }
611
+ }
612
+ };
613
+ }
614
+ if (!Module._wrapEmptyPacketListenerOutput) {
615
+ Module._wrapEmptyPacketListenerOutput = (outputStreamName, timestamp) => {
616
+ if (Module.emptyPacketListeners) {
617
+ const streamName = UTF8ToString(outputStreamName);
618
+ if (Module.emptyPacketListeners[streamName]) {
619
+ Module.emptyPacketListeners[streamName](timestamp);
619
620
  }
620
621
  }
621
622
  };
@@ -5960,104 +5961,104 @@ WebGPU.initManagers();
5960
5961
 
5961
5962
  var asmLibraryArg = {
5962
5963
  "Sa": HaveOffsetConverter,
5963
- "Ra": JsOnSimpleListenerBinaryArray,
5964
- "Qa": JsOnSimpleListenerBool,
5965
- "Pa": JsOnSimpleListenerDouble,
5966
- "Oa": JsOnSimpleListenerFloat,
5967
- "Na": JsOnSimpleListenerInt,
5968
- "Ma": JsOnSimpleListenerString,
5969
- "La": JsOnVectorListenerBool,
5970
- "Ka": JsOnVectorListenerDouble,
5971
- "Ja": JsOnVectorListenerFloat,
5972
- "Ia": JsOnVectorListenerInt,
5973
- "Ha": JsOnVectorListenerProto,
5974
- "Ga": JsOnVectorListenerString,
5975
- "e": JsWrapErrorListener,
5976
- "h": JsWrapSimpleListeners,
5977
- "g": JsWrapVectorListeners,
5978
- "K": ___syscall_fcntl64,
5979
- "Fa": ___syscall_ioctl,
5980
- "J": ___syscall_openat,
5981
- "Ea": ___syscall_stat64,
5982
- "za": __dlinit,
5983
- "ya": __dlopen_js,
5984
- "xa": __dlsym_js,
5985
- "wa": __emscripten_get_now_is_monotonic,
5986
- "va": __gmtime_js,
5987
- "ua": __localtime_js,
5988
- "ta": __mktime_js,
5989
- "sa": __mmap_js,
5990
- "ra": __munmap_js,
5991
- "qa": __tzset_js,
5964
+ "Ra": JsOnEmptyPacketListener,
5965
+ "Qa": JsOnSimpleListenerBinaryArray,
5966
+ "Pa": JsOnSimpleListenerBool,
5967
+ "Oa": JsOnSimpleListenerDouble,
5968
+ "Na": JsOnSimpleListenerFloat,
5969
+ "Ma": JsOnSimpleListenerInt,
5970
+ "La": JsOnSimpleListenerString,
5971
+ "Ka": JsOnVectorListenerBool,
5972
+ "Ja": JsOnVectorListenerDouble,
5973
+ "Ia": JsOnVectorListenerFloat,
5974
+ "Ha": JsOnVectorListenerInt,
5975
+ "Ga": JsOnVectorListenerProto,
5976
+ "Fa": JsOnVectorListenerString,
5977
+ "f": JsWrapErrorListener,
5978
+ "b": JsWrapSimpleListeners,
5979
+ "J": ___syscall_fcntl64,
5980
+ "Ea": ___syscall_ioctl,
5981
+ "I": ___syscall_openat,
5982
+ "Da": ___syscall_stat64,
5983
+ "ya": __dlinit,
5984
+ "xa": __dlopen_js,
5985
+ "wa": __dlsym_js,
5986
+ "va": __emscripten_get_now_is_monotonic,
5987
+ "ua": __gmtime_js,
5988
+ "ta": __localtime_js,
5989
+ "sa": __mktime_js,
5990
+ "ra": __mmap_js,
5991
+ "qa": __munmap_js,
5992
+ "pa": __tzset_js,
5992
5993
  "a": _abort,
5993
- "I": _emscripten_asm_const_int,
5994
- "pa": _emscripten_date_now,
5995
- "oa": _emscripten_get_heap_max,
5996
- "d": _emscripten_get_now,
5997
- "na": _emscripten_memcpy_big,
5998
- "ma": _emscripten_pc_get_function,
5999
- "la": _emscripten_resize_heap,
6000
- "ka": _emscripten_stack_snapshot,
6001
- "ja": _emscripten_stack_unwind_buffer,
6002
- "ia": _emscripten_webgl_create_context,
6003
- "ha": _emscripten_webgl_destroy_context,
6004
- "ga": _emscripten_webgl_get_context_attributes,
6005
- "H": _emscripten_webgl_get_current_context,
6006
- "fa": _emscripten_webgl_init_context_attributes,
6007
- "ea": _emscripten_webgl_make_context_current,
6008
- "Da": _environ_get,
6009
- "Ca": _environ_sizes_get,
6010
- "G": _exit,
6011
- "s": _fd_close,
6012
- "Ba": _fd_read,
6013
- "P": _fd_seek,
6014
- "r": _fd_write,
6015
- "da": _getentropy,
6016
- "q": _glActiveTexture,
6017
- "F": _glAttachShader,
6018
- "ca": _glBindAttribLocation,
6019
- "f": _glBindBuffer,
6020
- "m": _glBindFramebuffer,
6021
- "c": _glBindTexture,
6022
- "E": _glBufferData,
6023
- "O": _glClientWaitSync,
6024
- "ba": _glCompileShader,
6025
- "aa": _glCreateProgram,
6026
- "$": _glCreateShader,
6027
- "D": _glDeleteFramebuffers,
6028
- "_": _glDeleteProgram,
6029
- "C": _glDeleteShader,
6030
- "i": _glDeleteSync,
6031
- "B": _glDeleteTextures,
6032
- "A": _glDisableVertexAttribArray,
6033
- "Z": _glDrawArrays,
6034
- "z": _glEnableVertexAttribArray,
6035
- "y": _glFenceSync,
6036
- "l": _glFinish,
6037
- "p": _glFramebufferTexture2D,
6038
- "x": _glGenBuffers,
6039
- "Y": _glGenFramebuffers,
6040
- "o": _glGenTextures,
6041
- "k": _glGetError,
6042
- "w": _glGetIntegerv,
6043
- "v": _glGetString,
6044
- "X": _glGetUniformLocation,
6045
- "W": _glLinkProgram,
6046
- "n": _glPixelStorei,
6047
- "u": _glReadPixels,
6048
- "V": _glShaderSource,
6049
- "U": _glTexImage2D,
6050
- "b": _glTexParameteri,
6051
- "T": _glTexStorage2D,
6052
- "S": _glUniform1i,
6053
- "R": _glUseProgram,
6054
- "t": _glVertexAttribPointer,
6055
- "Q": _glViewport,
6056
- "Aa": _proc_exit,
6057
- "j": _strftime,
6058
- "N": _strftime_l,
6059
- "M": _wgpuTextureDestroy,
6060
- "L": _wgpuTextureRelease
5994
+ "H": _emscripten_asm_const_int,
5995
+ "oa": _emscripten_date_now,
5996
+ "na": _emscripten_get_heap_max,
5997
+ "e": _emscripten_get_now,
5998
+ "ma": _emscripten_memcpy_big,
5999
+ "la": _emscripten_pc_get_function,
6000
+ "ka": _emscripten_resize_heap,
6001
+ "ja": _emscripten_stack_snapshot,
6002
+ "ia": _emscripten_stack_unwind_buffer,
6003
+ "ha": _emscripten_webgl_create_context,
6004
+ "ga": _emscripten_webgl_destroy_context,
6005
+ "fa": _emscripten_webgl_get_context_attributes,
6006
+ "G": _emscripten_webgl_get_current_context,
6007
+ "ea": _emscripten_webgl_init_context_attributes,
6008
+ "da": _emscripten_webgl_make_context_current,
6009
+ "Ca": _environ_get,
6010
+ "Ba": _environ_sizes_get,
6011
+ "F": _exit,
6012
+ "r": _fd_close,
6013
+ "Aa": _fd_read,
6014
+ "O": _fd_seek,
6015
+ "q": _fd_write,
6016
+ "ca": _getentropy,
6017
+ "p": _glActiveTexture,
6018
+ "E": _glAttachShader,
6019
+ "ba": _glBindAttribLocation,
6020
+ "g": _glBindBuffer,
6021
+ "l": _glBindFramebuffer,
6022
+ "d": _glBindTexture,
6023
+ "D": _glBufferData,
6024
+ "N": _glClientWaitSync,
6025
+ "aa": _glCompileShader,
6026
+ "$": _glCreateProgram,
6027
+ "_": _glCreateShader,
6028
+ "C": _glDeleteFramebuffers,
6029
+ "Z": _glDeleteProgram,
6030
+ "B": _glDeleteShader,
6031
+ "h": _glDeleteSync,
6032
+ "A": _glDeleteTextures,
6033
+ "z": _glDisableVertexAttribArray,
6034
+ "Y": _glDrawArrays,
6035
+ "y": _glEnableVertexAttribArray,
6036
+ "x": _glFenceSync,
6037
+ "k": _glFinish,
6038
+ "o": _glFramebufferTexture2D,
6039
+ "w": _glGenBuffers,
6040
+ "X": _glGenFramebuffers,
6041
+ "n": _glGenTextures,
6042
+ "j": _glGetError,
6043
+ "v": _glGetIntegerv,
6044
+ "u": _glGetString,
6045
+ "W": _glGetUniformLocation,
6046
+ "V": _glLinkProgram,
6047
+ "m": _glPixelStorei,
6048
+ "t": _glReadPixels,
6049
+ "U": _glShaderSource,
6050
+ "T": _glTexImage2D,
6051
+ "c": _glTexParameteri,
6052
+ "S": _glTexStorage2D,
6053
+ "R": _glUniform1i,
6054
+ "Q": _glUseProgram,
6055
+ "s": _glVertexAttribPointer,
6056
+ "P": _glViewport,
6057
+ "za": _proc_exit,
6058
+ "i": _strftime,
6059
+ "M": _strftime_l,
6060
+ "L": _wgpuTextureDestroy,
6061
+ "K": _wgpuTextureRelease
6061
6062
  };
6062
6063
 
6063
6064
  var asm = createWasm();
@@ -6258,9 +6259,9 @@ var stackAlloc = Module["stackAlloc"] = function() {
6258
6259
  return (stackAlloc = Module["stackAlloc"] = Module["asm"]["Pb"]).apply(null, arguments);
6259
6260
  };
6260
6261
 
6261
- var ___start_em_js = Module["___start_em_js"] = 536316;
6262
+ var ___start_em_js = Module["___start_em_js"] = 538668;
6262
6263
 
6263
- var ___stop_em_js = Module["___stop_em_js"] = 539722;
6264
+ var ___stop_em_js = Module["___stop_em_js"] = 542147;
6264
6265
 
6265
6266
  Module["addRunDependency"] = addRunDependency;
6266
6267