blob: fb47616cfe8f40fe7ee6eeeefe4867984225e12a [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
11#include "webrtc/modules/audio_coding/neteq4/timestamp_scaler.h"
12
13#include "webrtc/modules/audio_coding/neteq4/decoder_database.h"
henrik.lundin@webrtc.orgb3e905c2013-09-02 09:41:06 +000014#include "webrtc/modules/audio_coding/neteq4/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 }
51 case kDecoderOpus:
52 case kDecoderOpus_2ch:
henrik.lundin@webrtc.orgac59dba2013-01-31 09:55:24 +000053 case kDecoderISACfb:
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000054 case kDecoderCNGswb48kHz: {
55 // Use timestamp scaling with factor 2/3 (32 kHz sample rate, but RTP
56 // timestamps run on 48 kHz).
57 // TODO(tlegrand): Remove scaling for kDecoderCNGswb48kHz once ACM has
minyue@webrtc.orgb28bfa72014-03-21 12:07:40 +000058 // full 48 kHz support. Change also ought to be made in
59 // PayloadSplitter::SplitFec().
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000060 numerator_ = 2;
61 denominator_ = 3;
62 }
63 case kDecoderAVT:
64 case kDecoderCNGnb:
65 case kDecoderCNGwb:
66 case kDecoderCNGswb32kHz: {
67 // Do not change the timestamp scaling settings for DTMF or CNG.
68 break;
69 }
70 default: {
71 // Do not use timestamp scaling for any other codec.
72 numerator_ = 1;
73 denominator_ = 1;
74 break;
75 }
76 }
77
78 if (!(numerator_ == 1 && denominator_ == 1)) {
79 // We have a scale factor != 1.
80 if (!first_packet_received_) {
81 external_ref_ = external_timestamp;
82 internal_ref_ = external_timestamp;
83 first_packet_received_ = true;
84 }
85 int32_t external_diff = external_timestamp - external_ref_;
86 assert(denominator_ > 0); // Should not be possible.
87 external_ref_ = external_timestamp;
88 internal_ref_ += (external_diff * numerator_) / denominator_;
turaj@webrtc.org0c0fae82013-09-25 17:42:17 +000089 LOG(LS_VERBOSE) << "Converting timestamp: " << external_timestamp <<
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000090 " -> " << internal_ref_;
91 return internal_ref_;
92 } else {
93 // No scaling.
94 return external_timestamp;
95 }
96}
97
98
99uint32_t TimestampScaler::ToExternal(uint32_t internal_timestamp) const {
100 if (!first_packet_received_ || (numerator_ == 1 && denominator_ == 1)) {
101 // Not initialized, or scale factor is 1.
102 return internal_timestamp;
103 } else {
104 int32_t internal_diff = internal_timestamp - internal_ref_;
105 assert(numerator_ > 0); // Should not be possible.
106 // Do not update references in this method.
107 // Switch |denominator_| and |numerator_| to convert the other way.
108 return external_ref_ + (internal_diff * denominator_) / numerator_;
109 }
110}
111
112} // namespace webrtc