Title: [239169] trunk/Source/WebCore
Revision
239169
Author
[email protected]
Date
2018-12-13 09:22:06 -0800 (Thu, 13 Dec 2018)

Log Message

[MediaStream] Calculate width or height when constraints contain only the other
https://bugs.webkit.org/show_bug.cgi?id=192632
<rdar://problem/46665734>

Unreviewed, remove an unneeded assert.


* platform/mediastream/RealtimeVideoSource.cpp:
(WebCore::RealtimeVideoSource::dispatchMediaSampleToObservers):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (239168 => 239169)


--- trunk/Source/WebCore/ChangeLog	2018-12-13 17:04:16 UTC (rev 239168)
+++ trunk/Source/WebCore/ChangeLog	2018-12-13 17:22:06 UTC (rev 239169)
@@ -1,3 +1,14 @@
+2018-12-13  Eric Carlson  <[email protected]>
+
+        [MediaStream] Calculate width or height when constraints contain only the other
+        https://bugs.webkit.org/show_bug.cgi?id=192632
+        <rdar://problem/46665734>
+
+        Unreviewed, remove an unneeded assert.
+
+        * platform/mediastream/RealtimeVideoSource.cpp:
+        (WebCore::RealtimeVideoSource::dispatchMediaSampleToObservers):
+
 2018-12-13  Zach Li  <[email protected]>
 
         Update Credit Card AutoFill button icon

Modified: trunk/Source/WebCore/platform/mediastream/RealtimeVideoSource.cpp (239168 => 239169)


--- trunk/Source/WebCore/platform/mediastream/RealtimeVideoSource.cpp	2018-12-13 17:04:16 UTC (rev 239168)
+++ trunk/Source/WebCore/platform/mediastream/RealtimeVideoSource.cpp	2018-12-13 17:22:06 UTC (rev 239169)
@@ -392,7 +392,6 @@
 #if PLATFORM(COCOA)
     if (!isRemote()) {
         auto size = this->size();
-        ASSERT(!size.isEmpty());
         if (!size.isEmpty() && size != expandedIntSize(sample.presentationSize())) {
 
             if (!m_imageTransferSession || m_imageTransferSession->pixelFormat() != sample.videoPixelFormat())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to