blob: c21dcb07bc0fec14f808b12a500e028f928401e1 [file] [log] [blame]
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +00001/*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 *
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.
9 */
10
11#ifndef WEBRTC_VIDEO_ENGINE_TEST_COMMON_GENERATE_SSRCS_H_
12#define WEBRTC_VIDEO_ENGINE_TEST_COMMON_GENERATE_SSRCS_H_
13
14#include <map>
15#include <vector>
16
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000017#include "webrtc/typedefs.h"
pbos@webrtc.org281cff82013-05-17 13:44:48 +000018#include "webrtc/video_engine/new_include/video_send_stream.h"
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000019
20namespace webrtc {
21namespace test {
22
pbos@webrtc.orgc1797062013-08-23 09:19:30 +000023void GenerateRandomSsrcs(VideoSendStream::Config* config,
phoglund@webrtc.orgeb7b0c42013-08-21 12:06:03 +000024 std::map<uint32_t, bool>* reserved_ssrcs);
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000025
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000026} // test
27} // webrtc
28
29#endif // WEBRTC_VIDEO_ENGINE_TEST_COMMON_GENERATE_SSRCS_H_