summaryrefslogtreecommitdiff
path: root/system/service/common/bluetooth/a2dp_codec_config.cc
blob: 2b5e5ba6662e30d734c89aa2dfe3bb097eb8b483 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
//  Copyright (C) 2017 Google, Inc.
//
//  Licensed under the Apache License, Version 2.0 (the "License");
//  you may not use this file except in compliance with the License.
//  You may obtain a copy of the License at:
//
//  http://www.apache.org/licenses/LICENSE-2.0
//
//  Unless required by applicable law or agreed to in writing, software
//  distributed under the License is distributed on an "AS IS" BASIS,
//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//  See the License for the specific language governing permissions and
//  limitations under the License.
//

#include "bluetooth/a2dp_codec_config.h"

namespace bluetooth {

A2dpCodecConfig::A2dpCodecConfig() = default;
A2dpCodecConfig::A2dpCodecConfig(const A2dpCodecConfig& other) = default;
A2dpCodecConfig::A2dpCodecConfig(int codec_type, int codec_priority,
                                 int sample_rate, int bits_per_sample,
                                 int channel_mode, int64_t codec_specific_1,
                                 int64_t codec_specific_2,
                                 int64_t codec_specific_3,
                                 int64_t codec_specific_4)
    : codec_type_(codec_type),
      codec_priority_(codec_priority),
      sample_rate_(sample_rate),
      bits_per_sample_(bits_per_sample),
      channel_mode_(channel_mode),
      codec_specific_1_(codec_specific_1),
      codec_specific_2_(codec_specific_2),
      codec_specific_3_(codec_specific_3),
      codec_specific_4_(codec_specific_4) {}

A2dpCodecConfig::~A2dpCodecConfig() = default;

}  // namespace bluetooth