deadbeef | 6979b02 | 2015-09-24 23:47:53 | [diff] [blame] | 1 | /* |
kjellander | b24317b | 2016-02-10 15:54:43 | [diff] [blame] | 2 | * Copyright 2015 The WebRTC project authors. All Rights Reserved. |
deadbeef | 6979b02 | 2015-09-24 23:47:53 | [diff] [blame] | 3 | * |
kjellander | b24317b | 2016-02-10 15:54:43 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
deadbeef | 6979b02 | 2015-09-24 23:47:53 | [diff] [blame] | 9 | */ |
| 10 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 11 | #include "pc/rtp_receiver.h" |
deadbeef | 6979b02 | 2015-09-24 23:47:53 | [diff] [blame] | 12 | |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 13 | #include <stddef.h> |
Jonas Olsson | a4d8737 | 2019-07-05 17:08:33 | [diff] [blame] | 14 | |
Mirko Bonadei | cc70a6d | 2024-01-25 08:34:26 | [diff] [blame] | 15 | #include <atomic> |
Henrik Boström | 9e6fd2b | 2017-11-21 12:41:51 | [diff] [blame] | 16 | #include <utility> |
Steve Anton | 36b29d1 | 2017-10-30 16:57:42 | [diff] [blame] | 17 | #include <vector> |
| 18 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 19 | #include "pc/media_stream.h" |
Markus Handell | a1b8201 | 2021-05-26 16:56:30 | [diff] [blame] | 20 | #include "pc/media_stream_proxy.h" |
Harald Alvestrand | c24a218 | 2022-02-23 13:44:59 | [diff] [blame] | 21 | #include "rtc_base/thread.h" |
deadbeef | 70ab1a1 | 2015-09-28 23:53:55 | [diff] [blame] | 22 | |
| 23 | namespace webrtc { |
| 24 | |
Harald Alvestrand | c72af93 | 2018-01-11 16:18:19 | [diff] [blame] | 25 | // This function is only expected to be called on the signalling thread. |
Mirko Bonadei | cc70a6d | 2024-01-25 08:34:26 | [diff] [blame] | 26 | // On the other hand, some test or even production setups may use |
| 27 | // several signaling threads. |
Ruslan Burakov | 501bfba | 2019-02-11 09:29:19 | [diff] [blame] | 28 | int RtpReceiverInternal::GenerateUniqueId() { |
Mirko Bonadei | cc70a6d | 2024-01-25 08:34:26 | [diff] [blame] | 29 | static std::atomic<int> g_unique_id{0}; |
Harald Alvestrand | c72af93 | 2018-01-11 16:18:19 | [diff] [blame] | 30 | |
| 31 | return ++g_unique_id; |
| 32 | } |
| 33 | |
Ruslan Burakov | 501bfba | 2019-02-11 09:29:19 | [diff] [blame] | 34 | std::vector<rtc::scoped_refptr<MediaStreamInterface>> |
| 35 | RtpReceiverInternal::CreateStreamsFromIds(std::vector<std::string> stream_ids) { |
Henrik Boström | 199e27b | 2018-07-04 18:51:53 | [diff] [blame] | 36 | std::vector<rtc::scoped_refptr<MediaStreamInterface>> streams( |
| 37 | stream_ids.size()); |
| 38 | for (size_t i = 0; i < stream_ids.size(); ++i) { |
| 39 | streams[i] = MediaStreamProxy::Create( |
| 40 | rtc::Thread::Current(), MediaStream::Create(std::move(stream_ids[i]))); |
| 41 | } |
| 42 | return streams; |
| 43 | } |
| 44 | |
deadbeef | 70ab1a1 | 2015-09-28 23:53:55 | [diff] [blame] | 45 | } // namespace webrtc |