2014-06-19 19:54:33 +00:00
|
|
|
/*
|
2016-02-07 20:46:45 -08:00
|
|
|
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
|
2014-06-19 19:54:33 +00:00
|
|
|
*
|
2016-02-07 20:46:45 -08:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2014-06-19 19:54:33 +00:00
|
|
|
*/
|
2015-01-20 21:36:13 +00:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef MEDIA_ENGINE_CONSTANTS_H_
|
|
|
|
|
#define MEDIA_ENGINE_CONSTANTS_H_
|
2014-06-19 19:54:33 +00:00
|
|
|
|
|
|
|
|
namespace cricket {
|
|
|
|
|
|
|
|
|
|
extern const int kVideoMtu;
|
2018-10-23 11:31:19 +02:00
|
|
|
extern const int kVideoRtpSendBufferSize;
|
|
|
|
|
extern const int kVideoRtpRecvBufferSize;
|
2014-06-19 19:54:33 +00:00
|
|
|
|
|
|
|
|
} // namespace cricket
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // MEDIA_ENGINE_CONSTANTS_H_
|