Skip to content

Commit d4e42eb

Browse files
committed
idl: synchronizationsource is a *unsigned* long
1 parent ef682af commit d4e42eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.bs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,9 @@ dictionary RTCEncodedVideoFrameMetadata {
292292
unsigned short height;
293293
long spatialIndex;
294294
long temporalIndex;
295-
long synchronizationSource;
295+
unsigned long synchronizationSource;
296296
octet payloadType;
297-
sequence<long> contributingSources;
297+
sequence<unsigned long> contributingSources;
298298
};
299299

300300
// New interfaces to define encoded video and audio frames. Will eventually
@@ -308,9 +308,9 @@ interface RTCEncodedVideoFrame {
308308
};
309309

310310
dictionary RTCEncodedAudioFrameMetadata {
311-
long synchronizationSource;
311+
unsigned long synchronizationSource;
312312
octet payloadType;
313-
sequence<long> contributingSources;
313+
sequence<unsigned long> contributingSources;
314314
};
315315

316316
[Exposed=(Window,DedicatedWorker)]

0 commit comments

Comments
 (0)