
This reverts commit 389b1672a32f2dd49af6c6ed40e8ddf394b986de. Reason for revert: Causes failure (and empty result list) in CallPerfTest.PadsToMinTransmitBitrate Original change's description: > Delete test/constants.h > > It's not possible to use constants.h for all RTP extensions > after the number of extensions exceeds 14, which is the maximum > number of one-byte RTP extensions. This is because some extensions > would have to be assigned a number greater than 14, even if the > test only involves 14 extensions or less. > > For uniformity's sake, this CL also edits some files to use an > enum as the files involved in this CL, rather than free-floating > const-ints. > > Bug: webrtc:10288 > Change-Id: Ib5e58ad72c4d3756f4c4f6521f140ec59617f3f5 > Reviewed-on: https://webrtc-review.googlesource.com/c/123048 > Commit-Queue: Elad Alon <eladalon@webrtc.org> > Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> > Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> > Reviewed-by: Erik Språng <sprang@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#26728} TBR=danilchap@webrtc.org,kwiberg@webrtc.org,eladalon@webrtc.org,sprang@webrtc.org No-Presubmit: True Bug: webrtc:10288, chromium:933127 Change-Id: If1de0bd8992137c52bf0b877b3cb0a2bafc809d4 Reviewed-on: https://webrtc-review.googlesource.com/c/123381 Commit-Queue: Oleh Prypin <oprypin@webrtc.org> Reviewed-by: Oleh Prypin <oprypin@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26744}
28 lines
899 B
C++
28 lines
899 B
C++
/*
|
|
* Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include "test/constants.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
const int kAudioLevelExtensionId = 5;
|
|
const int kTOffsetExtensionId = 6;
|
|
const int kAbsSendTimeExtensionId = 7;
|
|
const int kTransportSequenceNumberExtensionId = 8;
|
|
const int kVideoRotationExtensionId = 9;
|
|
const int kVideoContentTypeExtensionId = 10;
|
|
const int kVideoTimingExtensionId = 11;
|
|
const int kGenericDescriptorExtensionId = 12;
|
|
const int kColorSpaceExtensionId = 13;
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|