OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2015 Google Inc. | 3 * Copyright 2015 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 50 matching lines...) Loading... |
61 return track_.get(); | 61 return track_.get(); |
62 } | 62 } |
63 | 63 |
64 std::string id() const override { return id_; } | 64 std::string id() const override { return id_; } |
65 | 65 |
66 void Stop() override; | 66 void Stop() override; |
67 | 67 |
68 private: | 68 private: |
69 void Reconfigure(); | 69 void Reconfigure(); |
70 | 70 |
71 std::string id_; | 71 const std::string id_; |
72 rtc::scoped_refptr<AudioTrackInterface> track_; | 72 const rtc::scoped_refptr<AudioTrackInterface> track_; |
73 uint32_t ssrc_; | 73 const uint32_t ssrc_; |
74 AudioProviderInterface* provider_; | 74 AudioProviderInterface* provider_; // Set to null in Stop(). |
75 bool cached_track_enabled_; | 75 bool cached_track_enabled_; |
76 }; | 76 }; |
77 | 77 |
78 class VideoRtpReceiver : public rtc::RefCountedObject<RtpReceiverInterface> { | 78 class VideoRtpReceiver : public rtc::RefCountedObject<RtpReceiverInterface> { |
79 public: | 79 public: |
80 VideoRtpReceiver(VideoTrackInterface* track, | 80 VideoRtpReceiver(VideoTrackInterface* track, |
81 uint32_t ssrc, | 81 uint32_t ssrc, |
82 VideoProviderInterface* provider); | 82 VideoProviderInterface* provider); |
83 | 83 |
84 virtual ~VideoRtpReceiver(); | 84 virtual ~VideoRtpReceiver(); |
(...skipping 10 matching lines...) Loading... |
95 private: | 95 private: |
96 std::string id_; | 96 std::string id_; |
97 rtc::scoped_refptr<VideoTrackInterface> track_; | 97 rtc::scoped_refptr<VideoTrackInterface> track_; |
98 uint32_t ssrc_; | 98 uint32_t ssrc_; |
99 VideoProviderInterface* provider_; | 99 VideoProviderInterface* provider_; |
100 }; | 100 }; |
101 | 101 |
102 } // namespace webrtc | 102 } // namespace webrtc |
103 | 103 |
104 #endif // TALK_APP_WEBRTC_RTPRECEIVER_H_ | 104 #endif // TALK_APP_WEBRTC_RTPRECEIVER_H_ |
OLD | NEW |