blob: 93d72c2e348964f31f2a4285554cb722e3366b5a [file] [log] [blame]
jlmiller@webrtc.org5f93d0a2015-01-20 21:36:13 +00001/*
kjellander1afca732016-02-07 20:46:45 -08002 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved.
jlmiller@webrtc.org5f93d0a2015-01-20 21:36:13 +00003 *
kjellander1afca732016-02-07 20:46:45 -08004 * 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.
jlmiller@webrtc.org5f93d0a2015-01-20 21:36:13 +00009 */
henrike@webrtc.org28e20752013-07-10 00:45:36 +000010
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#include "media/base/mediaengine.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000012
skvladdc1c62c2016-03-16 19:07:43 -070013namespace cricket {
14
15webrtc::RtpParameters CreateRtpParametersWithOneEncoding() {
16 webrtc::RtpParameters parameters;
17 webrtc::RtpEncodingParameters encoding;
18 parameters.encodings.push_back(encoding);
19 return parameters;
20}
21
Henrik Kjellanderb2528562016-03-29 17:47:19 +020022}; // namespace cricket