Timing information is gathered in EncodedImage, starting at encoders. Then it's sent using RTP header extension. In the end, it's gathered at the GenericDecoder. Actual reporting and tests will be in the next CLs. BUG=webrtc:7594 Review-Url: https://codereview.webrtc.org/2911193002 Cr-Commit-Position: refs/heads/master@{#18659}
22 lines
762 B
C++
22 lines
762 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.
|
|
*/
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
extern const int kTOffsetExtensionId;
|
|
extern const int kAbsSendTimeExtensionId;
|
|
extern const int kTransportSequenceNumberExtensionId;
|
|
extern const int kVideoRotationExtensionId;
|
|
extern const int kVideoContentTypeExtensionId;
|
|
extern const int kVideoTimingExtensionId;
|
|
} // namespace test
|
|
} // namespace webrtc
|