File tree Expand file tree Collapse file tree 2 files changed +19
-10
lines changed Expand file tree Collapse file tree 2 files changed +19
-10
lines changed Original file line number Diff line number Diff line change @@ -141,10 +141,10 @@ packages:
141
141
dependency: "direct main"
142
142
description:
143
143
name: dart_webrtc
144
- sha256: "8565f1f1f412b8a6fd862f3a157560811e61eeeac26741c735a5d2ff409a0202 "
144
+ sha256: "5b76fd85ac95d6f5dee3e7d7de8d4b51bfbec1dc73804647c6aebb52d6297116 "
145
145
url: "https://pub.dev"
146
146
source: hosted
147
- version: "1.5.3"
147
+ version: "1.5.3+hotfix.2 "
148
148
dbus:
149
149
dependency: transitive
150
150
description:
@@ -220,10 +220,10 @@ packages:
220
220
dependency: "direct main"
221
221
description:
222
222
name: flutter_webrtc
223
- sha256: "4f0d6e248f178e617f249b6a2f432b5981e3300c2896fc8d476fc2aa1f525547"
223
+ sha256: e84ca404ef4b0d07a0fcd676b15814fabd5bc08e8d4b8dd8b634f76beab1bb50
224
224
url: "https://pub.dev"
225
225
source: hosted
226
- version: "0.13.1 "
226
+ version: "0.14.0 "
227
227
glob:
228
228
dependency: transitive
229
229
description:
@@ -328,6 +328,14 @@ packages:
328
328
url: "https://pub.dev"
329
329
source: hosted
330
330
version: "1.16.0"
331
+ mime_type:
332
+ dependency: "direct main"
333
+ description:
334
+ name: mime_type
335
+ sha256: d652b613e84dac1af28030a9fba82c0999be05b98163f9e18a0849c6e63838bb
336
+ url: "https://pub.dev"
337
+ source: hosted
338
+ version: "1.0.1"
331
339
mockito:
332
340
dependency: "direct dev"
333
341
description:
@@ -353,7 +361,7 @@ packages:
353
361
source: hosted
354
362
version: "2.2.0"
355
363
path:
356
- dependency: transitive
364
+ dependency: "direct main"
357
365
description:
358
366
name: path
359
367
sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
@@ -593,10 +601,10 @@ packages:
593
601
dependency: transitive
594
602
description:
595
603
name: webrtc_interface
596
- sha256: e92afec11152a9ccb5c9f35482754edd99696e886ab6acaf90c06dd2d09f09eb
604
+ sha256: "86fe3afc81a08481dfb25cf14a5a94e27062ecef25544783f352c914e0bbc1ca"
597
605
url: "https://pub.dev"
598
606
source: hosted
599
- version: "1.2.2+hotfix.1 "
607
+ version: "1.2.2+hotfix.2 "
600
608
win32:
601
609
dependency: transitive
602
610
description:
Original file line number Diff line number Diff line change @@ -248,7 +248,8 @@ class FrameCryptor {
248
248
this .codec = codec;
249
249
}
250
250
var transformer = web.TransformStream ({
251
- 'transform' : operation == 'encode' ? encodeFunction : decodeFunction
251
+ 'transform' :
252
+ (operation == 'encode' ? encodeFunction.toJS : decodeFunction.toJS)
252
253
}.jsify () as JSObject );
253
254
try {
254
255
readable
@@ -363,7 +364,7 @@ class FrameCryptor {
363
364
controller.enqueue (frameObj);
364
365
}
365
366
366
- Future < void > encodeFunction (
367
+ void encodeFunction (
367
368
JSObject frameObj,
368
369
web.TransformStreamDefaultController controller,
369
370
) async {
@@ -471,7 +472,7 @@ class FrameCryptor {
471
472
}
472
473
}
473
474
474
- Future < void > decodeFunction (
475
+ void decodeFunction (
475
476
JSObject frameObj,
476
477
web.TransformStreamDefaultController controller,
477
478
) async {
You can’t perform that action at this time.
0 commit comments