Home | History | Annotate | Download | only in webrtc

Lines Matching defs:track

39     long track = nativeGetTrack(nativeRtpSender);
40 // It may be possible for an RtpSender to be created without a track.
41 cachedTrack = (track == 0) ? null : new MediaStreamTrack(track);
44 // If |takeOwnership| is true, the RtpSender takes ownership of the track
46 // |takeOwnership| should only be used if the caller owns the track; it is
47 // not appropriate when the track is owned by, for example, another RtpSender
49 public boolean setTrack(MediaStreamTrack track, boolean takeOwnership) {
51 (track == null) ? 0 : track.nativeTrack)) {
57 cachedTrack = track;
62 public MediaStreamTrack track() {
80 // This should increment the reference count of the track.