Changeset 266052 in webkit
- Timestamp:
- Aug 24, 2020, 2:26:58 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCRtpReceiver-getSynchronizationSources.https-expected.txt (modified) (2 diffs)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/Modules/mediastream/RTCRtpContributingSource.h (modified) (1 diff)
-
Source/WebCore/Modules/mediastream/RTCRtpContributingSource.idl (modified) (1 diff)
-
Source/WebCore/Modules/mediastream/RTCRtpSynchronizationSource.idl (modified) (1 diff)
-
Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCRtpReceiverBackend.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/imported/w3c/ChangeLog
r266038 r266052 1 2020-08-24 Justin Uberti <justin@uberti.name> 2 3 RTCRtpSynchronizationSource.rtpTimestamp is not present 4 https://bugs.webkit.org/show_bug.cgi?id=215722 5 6 Reviewed by Youenn Fablet. 7 8 Updated expectations file to indicate that tests checking for .rtpTimestamp now pass. 9 10 * LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCRtpReceiver-getSynchronizationSources.https-expected.txt: 11 1 12 2020-08-22 Emilio Cobos Álvarez <emilio@crisal.io> 2 13 -
trunk/LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCRtpReceiver-getSynchronizationSources.https-expected.txt
r264202 r266052 2 2 PASS [audio] getSynchronizationSources() eventually returns a non-empty list 3 3 PASS [audio] RTCRtpSynchronizationSource.timestamp is a number 4 FAIL [audio] RTCRtpSynchronizationSource.rtpTimestamp is a number [0, 2^32-1] assert_equals: expected "number" but got "undefined" 4 PASS [audio] RTCRtpSynchronizationSource.rtpTimestamp is a number [0, 2^32-1] 5 5 PASS [audio] getSynchronizationSources() does not contain SSRCs older than 10 seconds 6 6 FAIL [audio] RTCRtpSynchronizationSource.timestamp is comparable to performance.timeOrigin + performance.now() assert_true: expected true got false … … 8 8 PASS [video] getSynchronizationSources() eventually returns a non-empty list 9 9 PASS [video] RTCRtpSynchronizationSource.timestamp is a number 10 FAIL [video] RTCRtpSynchronizationSource.rtpTimestamp is a number [0, 2^32-1] assert_equals: expected "number" but got "undefined" 10 PASS [video] RTCRtpSynchronizationSource.rtpTimestamp is a number [0, 2^32-1] 11 11 PASS [video] getSynchronizationSources() does not contain SSRCs older than 10 seconds 12 12 FAIL [video] RTCRtpSynchronizationSource.timestamp is comparable to performance.timeOrigin + performance.now() assert_true: expected true got false -
trunk/Source/WebCore/ChangeLog
r266051 r266052 1 2020-08-24 Justin Uberti <justin@uberti.name> 2 3 RTCRtpSynchronizationSource.rtpTimestamp is not present 4 https://bugs.webkit.org/show_bug.cgi?id=215722 5 6 Reviewed by Youenn Fablet. 7 8 Updated expected results in LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCRtpReceiver-getSynchronizationSources.https-expected.txt. 9 10 * Modules/mediastream/RTCRtpContributingSource.idl: 11 * Modules/mediastream/RTCRtpContributingSource.idl: 12 * Modules/mediastream/RTCRtpSynchronizationSource.idl: 13 Minor modification to ensure JSRTCRtpSynchronizationSource.cpp gets regenerated. 14 * Modules/mediastream/libwebrtc/LibWebRTCRtpReceiverBackend.cpp: 15 (WebCore::fillRTCRtpContributingSource): 16 1 17 2020-08-23 Wenson Hsieh <wenson_hsieh@apple.com> 2 18 -
trunk/Source/WebCore/Modules/mediastream/RTCRtpContributingSource.h
r239427 r266052 32 32 struct RTCRtpContributingSource { 33 33 double timestamp; 34 unsigned long rtpTimestamp; 34 35 unsigned long source; 35 36 Optional<double> audioLevel; -
trunk/Source/WebCore/Modules/mediastream/RTCRtpContributingSource.idl
r236147 r266052 32 32 ] dictionary RTCRtpContributingSource { 33 33 required DOMHighResTimeStamp timestamp; 34 required unsigned long rtpTimestamp; 34 35 required unsigned long source; 35 36 double audioLevel; -
trunk/Source/WebCore/Modules/mediastream/RTCRtpSynchronizationSource.idl
r236147 r266052 29 29 Conditional=WEB_RTC, 30 30 EnabledAtRuntime=PeerConnection, 31 JSGenerateToJSObject ,31 JSGenerateToJSObject 32 32 ] dictionary RTCRtpSynchronizationSource : RTCRtpContributingSource { 33 33 boolean voiceActivityFlag; -
trunk/Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCRtpReceiverBackend.cpp
r258493 r266052 42 42 { 43 43 source.timestamp = rtcSource.timestamp_ms(); 44 source.rtpTimestamp = rtcSource.rtp_timestamp(); 44 45 source.source = rtcSource.source_id(); 45 46 if (rtcSource.audio_level())
Note:
See TracChangeset
for help on using the changeset viewer.