blob: 68a2bc61b8fa4d5a5466afe1259698a63564b2f2 [file] [log] [blame]
buildbot@webrtc.orgdf9bbbe2014-06-19 19:54:33 +00001/*
kjellander1afca732016-02-07 20:46:45 -08002 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
buildbot@webrtc.orgdf9bbbe2014-06-19 19:54:33 +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.
buildbot@webrtc.orgdf9bbbe2014-06-19 19:54:33 +00009 */
jlmiller@webrtc.org5f93d0a2015-01-20 21:36:13 +000010
kjellander@webrtc.org5ad12972016-02-12 06:39:40 +010011#ifndef WEBRTC_MEDIA_ENGINE_CONSTANTS_H_
12#define WEBRTC_MEDIA_ENGINE_CONSTANTS_H_
buildbot@webrtc.orgdf9bbbe2014-06-19 19:54:33 +000013
14namespace cricket {
15
16extern const int kVideoMtu;
17extern const int kVideoRtpBufferSize;
18
pbos@webrtc.org7fe1e032014-10-14 04:25:33 +000019extern const char kH264CodecName[];
buildbot@webrtc.orgdf9bbbe2014-06-19 19:54:33 +000020
buildbot@webrtc.orgdf9bbbe2014-06-19 19:54:33 +000021extern const int kMinVideoBitrate;
22extern const int kStartVideoBitrate;
23extern const int kMaxVideoBitrate;
24
buildbot@webrtc.orgdf9bbbe2014-06-19 19:54:33 +000025} // namespace cricket
26
kjellander@webrtc.org5ad12972016-02-12 06:39:40 +010027#endif // WEBRTC_MEDIA_ENGINE_CONSTANTS_H_