aff4ee0e95338c5dfaa9cfe109f33f556249cedc
[platform/core/api/audio-io.git] / src / cpp / CAudioInfo.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 #include <stdio.h>
19 #include "CAudioIODef.h"
20
21
22 using namespace std;
23 using namespace tizen_media_audio;
24
25
26 /**
27  * class CAudioInfo
28  */
29 CAudioInfo::CAudioInfo() :
30     __mSampleRate(MAX_SYSTEM_SAMPLERATE),
31     __mChannel(EChannel::CHANNEL_MONO),
32     __mSampleType(ESampleType::SAMPLE_TYPE_U8),
33     __mAudioType(EAudioType::AUDIO_IN_TYPE_MEDIA),
34     __mAudioIndex(-1) {
35 }
36
37 CAudioInfo::CAudioInfo(unsigned int sampleRate, EChannel channel, ESampleType sampleType, EAudioType audioType, int audioIndex) :
38     __mSampleRate(sampleRate),
39     __mChannel(channel),
40     __mSampleType(sampleType),
41     __mAudioType(audioType),
42     __mAudioIndex(audioIndex) {
43     // Check to invalid AudioInfo
44     if (sampleRate < CAudioInfo::MIN_SYSTEM_SAMPLERATE || sampleRate > CAudioInfo::MAX_SYSTEM_SAMPLERATE)
45         THROW_ERROR_MSG_FORMAT(CAudioError::EError::ERROR_INVALID_ARGUMENT, "The sampleRate is invalid [sampleRate:%u]", sampleRate);
46
47     if (channel < CAudioInfo::EChannel::CHANNEL_MONO || channel >= CAudioInfo::EChannel::CHANNEL_MAX)
48         THROW_ERROR_MSG_FORMAT(CAudioError::EError::ERROR_INVALID_ARGUMENT, "The channel is invalid [channel:%u]", to_integral(channel));
49
50     if (sampleType < CAudioInfo::ESampleType::SAMPLE_TYPE_U8 || sampleType >= CAudioInfo::ESampleType::SAMPLE_TYPE_MAX)
51         THROW_ERROR_MSG_FORMAT(CAudioError::EError::ERROR_INVALID_ARGUMENT, "The sampleType is invalid [sampleType:%u]", to_integral(sampleType));
52
53     if (audioType < CAudioInfo::EAudioType::AUDIO_IN_TYPE_MEDIA || audioType >= CAudioInfo::EAudioType::AUDIO_TYPE_MAX)
54         THROW_ERROR_MSG_FORMAT(CAudioError::EError::ERROR_INVALID_ARGUMENT, "The audioType is invalid [audioType:%u]", to_integral(audioType));
55 }
56
57 unsigned int CAudioInfo::getSampleRate() noexcept {
58     return __mSampleRate;
59 }
60
61 CAudioInfo::EChannel CAudioInfo::getChannel() noexcept {
62     return __mChannel;
63 }
64
65 CAudioInfo::ESampleType CAudioInfo::getSampleType() noexcept {
66     return __mSampleType;
67 }
68
69 CAudioInfo::EAudioType CAudioInfo::getAudioType() noexcept {
70     return __mAudioType;
71 }
72
73 void CAudioInfo::setAudioType(CAudioInfo::EAudioType audioType) noexcept {
74     __mAudioType = audioType;
75 }
76
77 void CAudioInfo::setAudioTypeByInputStreamType(const char* streamType) {
78     __mAudioType = convertInputStreamTypeToAudioType(streamType);
79 }
80
81 void CAudioInfo::setAudioTypeByOutputStreamType(const char* streamType) {
82     __mAudioType = convertOutputStreamTypeToAudioType(streamType);
83 }
84
85 int CAudioInfo::getAudioIndex() noexcept {
86     return __mAudioIndex;
87 }
88
89 void CAudioInfo::setAudioIndex(int audioIndex) noexcept {
90     __mAudioIndex = audioIndex;
91 }
92
93 int CAudioInfo::getSampleSize() noexcept {
94     int bytes_in_sample = 0;
95
96     switch (__mSampleType) {
97     case ESampleType::SAMPLE_TYPE_U8:
98         bytes_in_sample = 1;
99         break;
100     case ESampleType::SAMPLE_TYPE_S16_LE:
101         bytes_in_sample = 2;
102         break;
103     case ESampleType::SAMPLE_TYPE_S24_LE:
104         bytes_in_sample = 3;
105         break;
106     case ESampleType::SAMPLE_TYPE_S24_32_LE:
107     case ESampleType::SAMPLE_TYPE_S32_LE:
108         bytes_in_sample = 4;
109         break;
110     default:
111         AUDIO_IO_LOGW("As unrecognized sample type %d, let's assume S16_LE", static_cast<int>(__mSampleType));
112         bytes_in_sample = 2;
113         break;
114     }
115
116     return bytes_in_sample * static_cast<int>(__mChannel);
117 }
118
119 const char* CAudioInfo::getConvertedStreamType() {
120     if (__mAudioType < CAudioInfo::EAudioType::AUDIO_IN_TYPE_MEDIA || __mAudioType >= CAudioInfo::EAudioType::AUDIO_TYPE_MAX)
121         THROW_ERROR_MSG_FORMAT(CAudioError::EError::ERROR_NOT_SUPPORTED_TYPE,
122                                "The audioType is not supported [audioType:%u]", to_integral(__mAudioType));
123
124     return __STREAM_TYPE_TABLE[(unsigned int)__mAudioType];
125 }
126
127 CAudioInfo::EAudioType CAudioInfo::convertInputStreamTypeToAudioType(const char *streamType) {
128     for (auto i = (unsigned int)CAudioInfo::EAudioType::AUDIO_IN_TYPE_MEDIA ; i < (unsigned int)CAudioInfo::EAudioType::AUDIO_OUT_TYPE_MEDIA ; i++) {
129         if (!strcmp((char *)__STREAM_TYPE_TABLE[i], streamType))
130             return (CAudioInfo::EAudioType)i;
131     }
132     THROW_ERROR_MSG_FORMAT(CAudioError::EError::ERROR_NOT_SUPPORTED_TYPE, "The streamType of input is not supported [streamType:%s]", streamType);
133 }
134
135 CAudioInfo::EAudioType CAudioInfo::convertOutputStreamTypeToAudioType(const char *streamType) {
136     for (auto i = (unsigned int)CAudioInfo::EAudioType::AUDIO_OUT_TYPE_MEDIA ; i < (unsigned int)CAudioInfo::EAudioType::AUDIO_TYPE_MAX ; i++) {
137         if (!strcmp((char *)__STREAM_TYPE_TABLE[i], streamType))
138             return (CAudioInfo::EAudioType)i;
139     }
140     THROW_ERROR_MSG_FORMAT(CAudioError::EError::ERROR_NOT_SUPPORTED_TYPE, "The streamType of output is not supported [streamType:%s]", streamType);
141 }
142