blob: 11d5a20dd6d6769f717ab7c140153e0fe0cbb8e0 [file] [log] [blame]
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001/*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 *
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
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.
9 */
10
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000011#include "webrtc/modules/audio_coding/neteq/timestamp_scaler.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000012
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000013#include "webrtc/modules/audio_coding/neteq/decoder_database.h"
14#include "webrtc/modules/audio_coding/neteq/defines.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000015#include "webrtc/system_wrappers/interface/logging.h"
16
17namespace webrtc {
18
19void TimestampScaler::ToInternal(Packet* packet) {
20 if (!packet) {
21 return;
22 }
23 packet->header.timestamp = ToInternal(packet->header.timestamp,
24 packet->header.payloadType);
25}
26
27void TimestampScaler::ToInternal(PacketList* packet_list) {
28 PacketList::iterator it;
29 for (it = packet_list->begin(); it != packet_list->end(); ++it) {
30 ToInternal(*it);
31 }
32}
33
34uint32_t TimestampScaler::ToInternal(uint32_t external_timestamp,
35 uint8_t rtp_payload_type) {
36 const DecoderDatabase::DecoderInfo* info =
37 decoder_database_.GetDecoderInfo(rtp_payload_type);
38 if (!info) {
39 // Payload type is unknown. Do not scale.
40 return external_timestamp;
41 }
42 switch (info->codec_type) {
43 case kDecoderG722:
44 case kDecoderG722_2ch: {
45 // Use timestamp scaling with factor 2 (two output samples per RTP
46 // timestamp).
47 numerator_ = 2;
48 denominator_ = 1;
49 break;
50 }
henrik.lundin@webrtc.orgac59dba2013-01-31 09:55:24 +000051 case kDecoderISACfb:
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000052 case kDecoderCNGswb48kHz: {
53 // Use timestamp scaling with factor 2/3 (32 kHz sample rate, but RTP
54 // timestamps run on 48 kHz).
55 // TODO(tlegrand): Remove scaling for kDecoderCNGswb48kHz once ACM has
minyue@webrtc.org7549ff42014-04-02 15:03:01 +000056 // full 48 kHz support.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000057 numerator_ = 2;
58 denominator_ = 3;
kjellander@webrtc.org7d2b6a92015-01-28 18:37:58 +000059 break;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000060 }
61 case kDecoderAVT:
62 case kDecoderCNGnb:
63 case kDecoderCNGwb:
64 case kDecoderCNGswb32kHz: {
65 // Do not change the timestamp scaling settings for DTMF or CNG.
66 break;
67 }
68 default: {
69 // Do not use timestamp scaling for any other codec.
70 numerator_ = 1;
71 denominator_ = 1;
72 break;
73 }
74 }
75
76 if (!(numerator_ == 1 && denominator_ == 1)) {
77 // We have a scale factor != 1.
78 if (!first_packet_received_) {
79 external_ref_ = external_timestamp;
80 internal_ref_ = external_timestamp;
81 first_packet_received_ = true;
82 }
83 int32_t external_diff = external_timestamp - external_ref_;
84 assert(denominator_ > 0); // Should not be possible.
85 external_ref_ = external_timestamp;
86 internal_ref_ += (external_diff * numerator_) / denominator_;
turaj@webrtc.org0c0fae82013-09-25 17:42:17 +000087 LOG(LS_VERBOSE) << "Converting timestamp: " << external_timestamp <<
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000088 " -> " << internal_ref_;
89 return internal_ref_;
90 } else {
91 // No scaling.
92 return external_timestamp;
93 }
94}
95
96
97uint32_t TimestampScaler::ToExternal(uint32_t internal_timestamp) const {
98 if (!first_packet_received_ || (numerator_ == 1 && denominator_ == 1)) {
99 // Not initialized, or scale factor is 1.
100 return internal_timestamp;
101 } else {
102 int32_t internal_diff = internal_timestamp - internal_ref_;
103 assert(numerator_ > 0); // Should not be possible.
104 // Do not update references in this method.
105 // Switch |denominator_| and |numerator_| to convert the other way.
106 return external_ref_ + (internal_diff * denominator_) / numerator_;
107 }
108}
109
110} // namespace webrtc