aboutsummaryrefslogtreecommitdiff
path: root/talk/app/webrtc/videotrack.cc
diff options
context:
space:
mode:
authordeadbeef <deadbeef@webrtc.org>2015-10-26 11:48:22 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-26 18:48:26 +0000
commitac9d92ccbe2b29590c53f702e11dc625820480d5 (patch)
treee29f178c6072bd418a4f8eda7b4b6ac467cf3bfa /talk/app/webrtc/videotrack.cc
parent4cba4eba596706f2238d14f96f4e181f47e5034c (diff)
downloadwebrtc-ac9d92ccbe2b29590c53f702e11dc625820480d5.tar.gz
Adding the ability to create an RtpSender without a track.
This CL also changes AddStream to immediately create a sender, rather than waiting until the track is seen in SDP. And the PeerConnection now builds the list of "send streams" from the list of senders, rather than the collection of local media streams. Review URL: https://codereview.webrtc.org/1413713003 Cr-Commit-Position: refs/heads/master@{#10414}
Diffstat (limited to 'talk/app/webrtc/videotrack.cc')
-rw-r--r--talk/app/webrtc/videotrack.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/talk/app/webrtc/videotrack.cc b/talk/app/webrtc/videotrack.cc
index 7c78aea91f..322273579b 100644
--- a/talk/app/webrtc/videotrack.cc
+++ b/talk/app/webrtc/videotrack.cc
@@ -31,7 +31,7 @@
namespace webrtc {
-static const char kVideoTrackKind[] = "video";
+const char MediaStreamTrackInterface::kVideoTrackKind[] = "video";
VideoTrack::VideoTrack(const std::string& label,
VideoSourceInterface* video_source)