HomeSort by relevance Sort by last modified time
    Searched full:peerconnection (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
RTCPeerConnectionDelegate.h 37 // implemented to get messages from PeerConnection.
41 - (void)peerConnectionOnError:(RTCPeerConnection *)peerConnection;
44 - (void)peerConnection:(RTCPeerConnection *)peerConnection
48 - (void)peerConnection:(RTCPeerConnection *)peerConnection
52 - (void)peerConnection:(RTCPeerConnection *)peerConnection
56 - (void)peerConnectionOnRenegotiationNeeded:(RTCPeerConnection *)peerConnection;
59 - (void)peerConnection:(RTCPeerConnection *)peerConnectio
    [all...]
RTCSessionDescriptonDelegate.h 41 - (void)peerConnection:(RTCPeerConnection *)peerConnection
46 - (void)peerConnection:(RTCPeerConnection *)peerConnection
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCPeerConnection.mm 54 RTCPeerConnection *peerConnection) {
56 _peerConnection = peerConnection;
62 [_delegate peerConnection:_peerConnection
73 [_delegate peerConnection:_peerConnection
86 RTCPeerConnection *peerConnection) {
88 _peerConnection = peerConnection;
92 [_delegate peerConnection:_peerConnection
102 [_delegate peerConnection:_peerConnection
122 return self.peerConnection->AddIceCandidate(iceCandidate.get());
127 BOOL ret = self.peerConnection->AddStream(stream.mediaStream
    [all...]
RTCPeerConnectionObserver.mm 46 RTCPeerConnection *peerConnection) {
47 _peerConnection = peerConnection;
56 [_delegate peerConnection:_peerConnection
64 [_delegate peerConnection:_peerConnection addedStream:mediaStream];
70 [_delegate peerConnection:_peerConnection removedStream:mediaStream];
84 [_delegate peerConnection:_peerConnection
91 [_delegate peerConnection:_peerConnection
100 [_delegate peerConnection:_peerConnection gotICECandidate:iceCandidate];
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtc.scons 6 # For peerconnection, we need additional flags only for GCC 4.6+.
10 # Detect the GCC version and update peerconnection flags.
20 name = 'peerconnection',
32 'peerconnection.cc',
48 name = 'peerconnection',
79 'peerconnection',
peerconnection.cc 28 #include "talk/app/webrtc/peerconnection.h"
297 // Check if we can send |new_stream| on a PeerConnection.
299 // PeerConnection.
317 PeerConnection::PeerConnection(PeerConnectionFactory* factory)
326 PeerConnection::~PeerConnection() {
333 bool PeerConnection::Initialize(
349 bool PeerConnection::DoInitialize(
387 // Register PeerConnection as receiver of local ice candidates
    [all...]
mediastreamhandler.h 29 // MediaTracks that are connected to a certain PeerConnection.
47 // connected to a certain PeerConnection.
53 // Stop using |track_| on this PeerConnection.
71 // connected to a PeerConnection and orders the |provider| to executes the
92 // connected to a PeerConnection and orders the |provider| to executes the
112 // connected to a PeerConnection and orders the |provider| to executes the
132 // connected to a PeerConnection and orders the |provider| to execute
peerconnection.h 49 // PeerConnectionImpl implements the PeerConnection interface.
51 // the PeerConnection functionality.
52 class PeerConnection : public PeerConnectionInterface,
58 explicit PeerConnection(PeerConnectionFactory* factory);
106 virtual ~PeerConnection();
173 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
peerconnectioninterface.h 28 // This file contains the PeerConnection interface as defined in
30 // Applications must use this interface to implement peerconnection.
32 // peerconnection, mediastream and media tracks objects.
37 // 2. Create a PeerConnection object. Provide a configuration string which
41 // and add it to PeerConnection by calling AddStream.
43 // 5. Once an ice candidate have been found PeerConnection will call the
50 // the peerconnection by calling AddIceCandidate.
54 // This decision will be taken by the application not peerconnection.
57 // 2. Create a new PeerConnection.
58 // 3. Provide the remote offer to the new PeerConnection object by callin
    [all...]
  /external/chromium_org/content/browser/media/
webrtc_internals.h 29 // This method is called when a PeerConnection is created.
34 // identify a PeerConnection, |url| is the url of the tab owning the
35 // PeerConnection, |servers| is the servers configuration, |constraints| is
36 // the media constraints used to initialize the PeerConnection.
44 // This method is called when PeerConnection is destroyed.
48 // This method is called when a PeerConnection is updated.
96 // |peer_connection_data_| is a list containing all the PeerConnection
98 // Each item of the list represents the data for one PeerConnection, which
100 // "pid" -- processId of the renderer that creates the PeerConnection.
101 // "lid" -- local Id assigned to the PeerConnection
    [all...]
webrtc_browsertest.cc 194 // These tests will make a complete PeerConnection-based call and verify that
199 GURL url(embedded_test_server()->GetURL("/media/peerconnection-call.html"));
246 GURL url(embedded_test_server()->GetURL("/media/peerconnection-call.html"));
256 GURL url(embedded_test_server()->GetURL("/media/peerconnection-call.html"));
267 GURL url(embedded_test_server()->GetURL("/media/peerconnection-call.html"));
276 // Below 2 test will make a complete PeerConnection-based call between pc1 and
290 GURL url(embedded_test_server()->GetURL("/media/peerconnection-call.html"));
301 GURL url(embedded_test_server()->GetURL("/media/peerconnection-call.html"));
311 // This test will make a complete PeerConnection-based call but remove the
331 GURL url(embedded_test_server()->GetURL("/media/peerconnection-call.html"))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/
libjingle_examples.gyp 93 'examples/peerconnection/server/data_socket.cc',
94 'examples/peerconnection/server/data_socket.h',
95 'examples/peerconnection/server/main.cc',
96 'examples/peerconnection/server/peer_channel.cc',
97 'examples/peerconnection/server/peer_channel.h',
98 'examples/peerconnection/server/utils.cc',
99 'examples/peerconnection/server/utils.h',
165 'examples/peerconnection/client/conductor.cc',
166 'examples/peerconnection/client/conductor.h',
167 'examples/peerconnection/client/defaults.cc'
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/
RTCPeerConnectionSyncObserver.m 132 - (void)peerConnectionOnError:(RTCPeerConnection *)peerConnection {
137 - (void)peerConnection:(RTCPeerConnection *)peerConnection
145 - (void)peerConnection:(RTCPeerConnection *)peerConnection
152 - (void)peerConnection:(RTCPeerConnection *)peerConnection
160 (RTCPeerConnection *)peerConnection {
163 - (void)peerConnection:(RTCPeerConnection *)peerConnection
    [all...]
RTCSessionDescriptionSyncObserver.m 75 - (void)peerConnection:(RTCPeerConnection *)peerConnection
90 - (void)peerConnection:(RTCPeerConnection *)peerConnection
  /external/chromium_org/content/renderer/media/
peer_connection_tracker.h 57 // PeerConnection update happens. The caller should call the Track* methods
62 // Sends an update when a PeerConnection has been created in Javascript.
63 // This should be called once and only once for each PeerConnection.
64 // The |pc_handler| is the handler object associated with the PeerConnection,
67 // the PeerConnection, the |frame| is the WebFrame object representing the
68 // page in which the PeerConnection is created.
75 // Sends an update when a PeerConnection has been destroyed.
79 // The |pc_handler| is the handler object associated with the PeerConnection,
117 // Sends an update when a PeerConnection has been stopped.
120 // Sends an update when the signaling state of a PeerConnection has changed
    [all...]
media_stream_dependency_factory.h 30 class PeerConnection;
120 // Asks the libjingle PeerConnection factory to create a libjingle
121 // PeerConnection object.
122 // The PeerConnection object is owned by PeerConnectionHandler.
161 // Asks the PeerConnection factory to create a Local MediaStream object.
165 // Asks the PeerConnection factory to create a Local Audio Source.
170 // Asks the PeerConnection factory to create a Local Video Source.
186 // Asks the PeerConnection factory to create a Local AudioTrack object.
195 // Asks the PeerConnection factory to create a Local VideoTrack object.
200 // Asks the PeerConnection factory to create a Local VideoTrack object wit
    [all...]
peer_connection_handler_base.h 24 // PeerConnection API messages going between WebKit and native
25 // PeerConnection in libjingle.
44 // native_peer_connection_ is the native PeerConnection object,
rtc_data_channel_handler.h 17 // RtcDataChannelHandler is a delegate for the RTC PeerConnection DataChannel
18 // API messages going between WebKit and native PeerConnection DataChannels in
  /external/chromium_org/third_party/libjingle/source/talk/examples/ios/AppRTCDemo/
APPRTCAppDelegate.m 58 - (void)peerConnectionOnError:(RTCPeerConnection *)peerConnection {
60 NSAssert(NO, @"PeerConnection failed.");
63 - (void)peerConnection:(RTCPeerConnection *)peerConnection
68 - (void)peerConnection:(RTCPeerConnection *)peerConnection
80 - (void)peerConnection:(RTCPeerConnection *)peerConnection
87 peerConnectionOnRenegotiationNeeded:(RTCPeerConnection *)peerConnection {
92 - (void)peerConnection:(RTCPeerConnection *)peerConnectio
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
PeerConnectionFactory.java 35 * the PeerConnection API for clients.
56 public PeerConnection createPeerConnection(
57 List<PeerConnection.IceServer> iceServers,
59 PeerConnection.Observer observer) {
69 return new PeerConnection(nativePeerConnection, nativeObserver);
99 PeerConnection.Observer observer);
102 long nativeFactory, List<PeerConnection.IceServer> iceServers,
  /external/chromium_org/chrome/browser/media/
webrtc_browsertest_common.h 41 // Starts the peerconnection server on localhost on |kDefaultPort|.
44 // Stops the peerconnection server.
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/
README 1 This directory holds a Java implementation of the webrtc::PeerConnection API, as
11 org.webrtc.PeerConnection{,Factory} and the org.webrtc.PeerConnectionTest.
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main.cc 28 #include "talk/examples/peerconnection/client/conductor.h"
29 #include "talk/examples/peerconnection/client/main_wnd.h"
30 #include "talk/examples/peerconnection/client/peer_connection_client.h"
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/linux/
main.cc 30 #include "talk/examples/peerconnection/client/conductor.h"
31 #include "talk/examples/peerconnection/client/flagdefs.h"
32 #include "talk/examples/peerconnection/client/linux/main_wnd.h"
33 #include "talk/examples/peerconnection/client/peer_connection_client.h"
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/
peerconnection.scons 16 'peerconnection',

Completed in 1482 milliseconds

1 2 3 4 5