Changeset 207552 in webkit


Ignore:
Timestamp:
Oct 19, 2016 11:56:43 AM (7 years ago)
Author:
adam.bergkvist@ericsson.com
Message:

WebRTC: Implement MediaEndpointPeerConnection::stop()
https://bugs.webkit.org/show_bug.cgi?id=163660

Reviewed by Philippe Normand.

Make MediaEndpointPeerConnection::stop() stop its MediaEndpoint.

Testing: This fix deals with cleanup and tearing down resources down in the platform layer
and is not covered by automated tests. It is however observable in the manual test added
in [1] where the remote videos should stop when the connections are closed.

[1] http://webkit.org/b/163327

  • Modules/mediastream/MediaEndpointPeerConnection.cpp:

(WebCore::MediaEndpointPeerConnection::stop):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r207549 r207552  
     12016-10-19  Adam Bergkvist  <adam.bergkvist@ericsson.com>
     2
     3        WebRTC: Implement MediaEndpointPeerConnection::stop()
     4        https://bugs.webkit.org/show_bug.cgi?id=163660
     5
     6        Reviewed by Philippe Normand.
     7
     8        Make MediaEndpointPeerConnection::stop() stop its MediaEndpoint.
     9
     10        Testing: This fix deals with cleanup and tearing down resources down in the platform layer
     11        and is not covered by automated tests. It is however observable in the manual test added
     12        in [1] where the remote videos should stop when the connections are closed.
     13
     14        [1] http://webkit.org/b/163327
     15
     16        * Modules/mediastream/MediaEndpointPeerConnection.cpp:
     17        (WebCore::MediaEndpointPeerConnection::stop):
     18
    1192016-10-19  Dave Hyatt  <hyatt@apple.com>
    220
  • trunk/Source/WebCore/Modules/mediastream/MediaEndpointPeerConnection.cpp

    r207052 r207552  
    746746void MediaEndpointPeerConnection::stop()
    747747{
    748     notImplemented();
     748    m_mediaEndpoint->stop();
    749749}
    750750
Note: See TracChangeset for help on using the changeset viewer.