summaryrefslogtreecommitdiff
path: root/video_send_stream.h
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-04-24 11:13:21 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-04-24 11:13:21 +0000
commit16a058a180164c32a13f3406d35cc3ef1ad569c4 (patch)
tree511236aa850872b78c1b26ed04cd775bb7f3bc8e /video_send_stream.h
parentaa07e3cd81284689e55138a4f068b4f7e0f7617c (diff)
downloadwebrtc-16a058a180164c32a13f3406d35cc3ef1ad569c4.tar.gz
Rename Start/Stop in Video{Send,Receive}Streams.
Rename {Start,Stop}{Sending,Receving} to Start/Stop. StartSending provides no extra information in the context of a VideoSendStream, as what it does is to send. R=mflodman@webrtc.org BUG=3227 Review URL: https://webrtc-codereview.appspot.com/12329005 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5970 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'video_send_stream.h')
-rw-r--r--video_send_stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/video_send_stream.h b/video_send_stream.h
index 4aa04193..aa027b0e 100644
--- a/video_send_stream.h
+++ b/video_send_stream.h
@@ -159,8 +159,8 @@ class VideoSendStream {
// VideoSendStream is valid.
virtual VideoSendStreamInput* Input() = 0;
- virtual void StartSending() = 0;
- virtual void StopSending() = 0;
+ virtual void Start() = 0;
+ virtual void Stop() = 0;
// Set which streams to send. Must have at least as many SSRCs as configured
// in the config. Encoder settings are passed on to the encoder instance along