summaryrefslogtreecommitdiff
path: root/video/full_stack.cc
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-11-20 11:36:47 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-11-20 11:36:47 +0000
commit7f9f840e3a5a4f053bcbf3dfa80ab547cf21e957 (patch)
tree7694716e0874ae438674d6156009b6a60910c02d /video/full_stack.cc
parent964d78e5c80ec8e4cbaeece5f119806b1ef9ea22 (diff)
downloadwebrtc-7f9f840e3a5a4f053bcbf3dfa80ab547cf21e957.tar.gz
Rename video streams' start/stop methods.
{Start,Stop}{Send,Receive}() -> {Start,Stop}{Sending,Receiving}(). BUG= R=mflodman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/3609005 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5136 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'video/full_stack.cc')
-rw-r--r--video/full_stack.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/video/full_stack.cc b/video/full_stack.cc
index 317f126a..e9e8faf5 100644
--- a/video/full_stack.cc
+++ b/video/full_stack.cc
@@ -424,16 +424,16 @@ TEST_P(FullStackTest, NoPacketLoss) {
VideoReceiveStream* receive_stream =
call->CreateVideoReceiveStream(receive_config);
- receive_stream->StartReceive();
- send_stream->StartSend();
+ receive_stream->StartReceiving();
+ send_stream->StartSending();
file_capturer->Start();
analyzer.Wait();
file_capturer->Stop();
- send_stream->StopSend();
- receive_stream->StopReceive();
+ send_stream->StopSending();
+ receive_stream->StopReceiving();
call->DestroyReceiveStream(receive_stream);
call->DestroySendStream(send_stream);