| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 const char kComfortNoiseCodecName[] = "CN"; | 99 const char kComfortNoiseCodecName[] = "CN"; |
| 100 | 100 |
| 101 const char kVp8CodecName[] = "VP8"; | 101 const char kVp8CodecName[] = "VP8"; |
| 102 const char kVp9CodecName[] = "VP9"; | 102 const char kVp9CodecName[] = "VP9"; |
| 103 const char kH264CodecName[] = "H264"; | 103 const char kH264CodecName[] = "H264"; |
| 104 | 104 |
| 105 // RFC 6184 RTP Payload Format for H.264 video | 105 // RFC 6184 RTP Payload Format for H.264 video |
| 106 const char kH264FmtpProfileLevelId[] = "profile-level-id"; | 106 const char kH264FmtpProfileLevelId[] = "profile-level-id"; |
| 107 const char kH264FmtpLevelAsymmetryAllowed[] = "level-asymmetry-allowed"; | 107 const char kH264FmtpLevelAsymmetryAllowed[] = "level-asymmetry-allowed"; |
| 108 const char kH264FmtpPacketizationMode[] = "packetization-mode"; | 108 const char kH264FmtpPacketizationMode[] = "packetization-mode"; |
| 109 const char kH264FmtpSpropParameterSets[] = "sprop-parameter-sets"; |
| 109 const char kH264ProfileLevelConstrainedBaseline[] = "42e01f"; | 110 const char kH264ProfileLevelConstrainedBaseline[] = "42e01f"; |
| 110 | 111 |
| 111 const int kDefaultVideoMaxFramerate = 60; | 112 const int kDefaultVideoMaxFramerate = 60; |
| 112 } // namespace cricket | 113 } // namespace cricket |
| OLD | NEW |