Changeset 248335 in webkit
- Timestamp:
- Aug 6, 2019, 6:16:22 PM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Modules/mediastream/RTCDTMFSender.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r248327 r248335 1 2019-08-06 Loïc Yhuel <loic.yhuel@softathome.com> 2 3 Fix 32-bit Linux build after r248282 4 https://bugs.webkit.org/show_bug.cgi?id=200491 5 6 Reviewed by Youenn Fablet. 7 8 minInterToneGapMs must be a size_t like interToneGap for std::max call. 9 The other constants are updated for consistency, even if the compiler 10 was able to cast them automatically. 11 12 * Modules/mediastream/RTCDTMFSender.cpp: 13 1 14 2019-08-06 Commit Queue <commit-queue@webkit.org> 2 15 -
trunk/Source/WebCore/Modules/mediastream/RTCDTMFSender.cpp
r248282 r248335 38 38 WTF_MAKE_ISO_ALLOCATED_IMPL(RTCDTMFSender); 39 39 40 static const unsigned longminToneDurationMs = 40;41 static const unsigned longmaxToneDurationMs = 6000;42 static const unsigned longminInterToneGapMs = 30;40 static const size_t minToneDurationMs = 40; 41 static const size_t maxToneDurationMs = 6000; 42 static const size_t minInterToneGapMs = 30; 43 43 44 44 RTCDTMFSender::RTCDTMFSender(ScriptExecutionContext& context, RTCRtpSender& sender, std::unique_ptr<RTCDTMFSenderBackend>&& backend)
Note:
See TracChangeset
for help on using the changeset viewer.