Skip to content

Commit 8d2aff2

Browse files
authored
Merge pull request #126 from w3c/idl-types
Use unsigned long instead of long for positive values
2 parents c85fc84 + f50263e commit 8d2aff2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

index.bs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -322,15 +322,15 @@ enum RTCEncodedVideoFrameType {
322322
## <dfn>RTCEncodedVideoFrameMetadata</dfn> dictionary ## {#RTCEncodedVideoFrameMetadata}
323323
<pre class="idl">
324324
dictionary RTCEncodedVideoFrameMetadata {
325-
long long frameId;
326-
sequence&lt;long long&gt; dependencies;
325+
unsigned long long frameId;
326+
sequence&lt;unsigned long long&gt; dependencies;
327327
unsigned short width;
328328
unsigned short height;
329-
long spatialIndex;
330-
long temporalIndex;
329+
unsigned long spatialIndex;
330+
unsigned long temporalIndex;
331331
unsigned long synchronizationSource;
332332
octet payloadType;
333-
sequence&lt;unsigned long&gt; contributingSources;
333+
sequence&lt;unsigned long&gt; contributingSources;
334334
};
335335
</pre>
336336

0 commit comments

Comments
 (0)