blob: 20e59537b1c18e4e2ce26ccfdc229a9e8ce029bc [file] [log] [blame]
henrik.lundin@webrtc.orgc1c92912014-12-16 13:41:36 +00001/*
2 * Copyright (c) 2014 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/codecs/audio_encoder.h"
12
13namespace webrtc {
14
15AudioEncoder::EncodedInfo::EncodedInfo() : EncodedInfoLeaf() {
16}
17
18AudioEncoder::EncodedInfo::~EncodedInfo() {
19}
20
henrik.lundin@webrtc.org478cedc2015-01-27 18:24:45 +000021int AudioEncoder::rtp_timestamp_rate_hz() const {
22 return sample_rate_hz();
23}
24
henrik.lundin@webrtc.orgc1c92912014-12-16 13:41:36 +000025} // namespace webrtc