Skip to content

Commit 43cf96c

Browse files
authored
Merge pull request #153 from fippo/ssrc-unsigned
idl: synchronizationsource is a *unsigned* long
2 parents 5abcf5c + d4e42eb commit 43cf96c

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
@@ -288,9 +288,9 @@ dictionary RTCEncodedVideoFrameMetadata {
288288
unsigned short height;
289289
long spatialIndex;
290290
long temporalIndex;
291-
long synchronizationSource;
291+
unsigned long synchronizationSource;
292292
octet payloadType;
293-
sequence<long> contributingSources;
293+
sequence<unsigned long> contributingSources;
294294
};
295295

296296
// New interfaces to define encoded video and audio frames. Will eventually
@@ -304,9 +304,9 @@ interface RTCEncodedVideoFrame {
304304
};
305305

306306
dictionary RTCEncodedAudioFrameMetadata {
307-
long synchronizationSource;
307+
unsigned long synchronizationSource;
308308
octet payloadType;
309-
sequence<long> contributingSources;
309+
sequence<unsigned long> contributingSources;
310310
};
311311

312312
[Exposed=(Window,DedicatedWorker)]

0 commit comments

Comments
 (0)