Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 The Android Open Source Project |
| 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 | //#define LOG_NDEBUG 0 |
| 18 | #define LOG_TAG "C2SoftG711Dec" |
| 19 | #include <log/log.h> |
| 20 | |
| 21 | #include <media/stagefright/foundation/MediaDefs.h> |
| 22 | |
| 23 | #include <C2PlatformSupport.h> |
| 24 | #include <SimpleC2Interface.h> |
| 25 | |
| 26 | #include "C2SoftG711Dec.h" |
| 27 | |
| 28 | namespace android { |
| 29 | |
| 30 | #ifdef ALAW |
| 31 | constexpr char COMPONENT_NAME[] = "c2.android.g711.alaw.decoder"; |
| 32 | #else |
| 33 | constexpr char COMPONENT_NAME[] = "c2.android.g711.mlaw.decoder"; |
| 34 | #endif |
| 35 | |
| 36 | class C2SoftG711Dec::IntfImpl : public C2InterfaceHelper { |
| 37 | public: |
| 38 | explicit IntfImpl(const std::shared_ptr<C2ReflectorHelper> &helper) |
| 39 | : C2InterfaceHelper(helper) { |
| 40 | |
| 41 | setDerivedInstance(this); |
| 42 | |
| 43 | addParameter( |
Lajos Molnar | 3bb81cd | 2019-02-20 15:10:30 -0800 | [diff] [blame] | 44 | DefineParam(mInputFormat, C2_PARAMKEY_INPUT_STREAM_BUFFER_TYPE) |
| 45 | .withConstValue(new C2StreamBufferTypeSetting::input(0u, C2BufferData::LINEAR)) |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 46 | .build()); |
| 47 | |
| 48 | addParameter( |
Lajos Molnar | 3bb81cd | 2019-02-20 15:10:30 -0800 | [diff] [blame] | 49 | DefineParam(mOutputFormat, C2_PARAMKEY_OUTPUT_STREAM_BUFFER_TYPE) |
| 50 | .withConstValue(new C2StreamBufferTypeSetting::output(0u, C2BufferData::LINEAR)) |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 51 | .build()); |
| 52 | |
| 53 | addParameter( |
Lajos Molnar | 3bb81cd | 2019-02-20 15:10:30 -0800 | [diff] [blame] | 54 | DefineParam(mInputMediaType, C2_PARAMKEY_INPUT_MEDIA_TYPE) |
| 55 | .withConstValue(AllocSharedString<C2PortMediaTypeSetting::input>( |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 56 | #ifdef ALAW |
| 57 | MEDIA_MIMETYPE_AUDIO_G711_ALAW |
| 58 | #else |
| 59 | MEDIA_MIMETYPE_AUDIO_G711_MLAW |
| 60 | #endif |
| 61 | )).build()); |
| 62 | |
| 63 | addParameter( |
Lajos Molnar | 3bb81cd | 2019-02-20 15:10:30 -0800 | [diff] [blame] | 64 | DefineParam(mOutputMediaType, C2_PARAMKEY_OUTPUT_MEDIA_TYPE) |
| 65 | .withConstValue(AllocSharedString<C2PortMediaTypeSetting::output>( |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 66 | MEDIA_MIMETYPE_AUDIO_RAW)) |
| 67 | .build()); |
| 68 | |
| 69 | addParameter( |
Lajos Molnar | 3bb81cd | 2019-02-20 15:10:30 -0800 | [diff] [blame] | 70 | DefineParam(mSampleRate, C2_PARAMKEY_SAMPLE_RATE) |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 71 | .withDefault(new C2StreamSampleRateInfo::output(0u, 8000)) |
| 72 | .withFields({C2F(mSampleRate, value).inRange(8000, 48000)}) |
| 73 | .withSetter((Setter<decltype(*mSampleRate)>::StrictValueWithNoDeps)) |
| 74 | .build()); |
| 75 | |
| 76 | addParameter( |
Lajos Molnar | 3bb81cd | 2019-02-20 15:10:30 -0800 | [diff] [blame] | 77 | DefineParam(mChannelCount, C2_PARAMKEY_CHANNEL_COUNT) |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 78 | .withDefault(new C2StreamChannelCountInfo::output(0u, 1)) |
| 79 | .withFields({C2F(mChannelCount, value).equalTo(1)}) |
| 80 | .withSetter(Setter<decltype(*mChannelCount)>::StrictValueWithNoDeps) |
| 81 | .build()); |
| 82 | |
| 83 | addParameter( |
Lajos Molnar | 3bb81cd | 2019-02-20 15:10:30 -0800 | [diff] [blame] | 84 | DefineParam(mBitrate, C2_PARAMKEY_BITRATE) |
| 85 | .withDefault(new C2StreamBitrateInfo::input(0u, 64000)) |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 86 | .withFields({C2F(mBitrate, value).equalTo(64000)}) |
| 87 | .withSetter(Setter<decltype(*mBitrate)>::NonStrictValueWithNoDeps) |
| 88 | .build()); |
| 89 | |
| 90 | addParameter( |
| 91 | DefineParam(mInputMaxBufSize, C2_PARAMKEY_INPUT_MAX_BUFFER_SIZE) |
| 92 | .withConstValue(new C2StreamMaxBufferSizeInfo::input(0u, 8192)) |
| 93 | .build()); |
| 94 | } |
| 95 | |
| 96 | private: |
Lajos Molnar | 3bb81cd | 2019-02-20 15:10:30 -0800 | [diff] [blame] | 97 | std::shared_ptr<C2StreamBufferTypeSetting::input> mInputFormat; |
| 98 | std::shared_ptr<C2StreamBufferTypeSetting::output> mOutputFormat; |
| 99 | std::shared_ptr<C2PortMediaTypeSetting::input> mInputMediaType; |
| 100 | std::shared_ptr<C2PortMediaTypeSetting::output> mOutputMediaType; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 101 | std::shared_ptr<C2StreamSampleRateInfo::output> mSampleRate; |
| 102 | std::shared_ptr<C2StreamChannelCountInfo::output> mChannelCount; |
Lajos Molnar | 3bb81cd | 2019-02-20 15:10:30 -0800 | [diff] [blame] | 103 | std::shared_ptr<C2StreamBitrateInfo::input> mBitrate; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 104 | std::shared_ptr<C2StreamMaxBufferSizeInfo::input> mInputMaxBufSize; |
| 105 | }; |
| 106 | |
| 107 | C2SoftG711Dec::C2SoftG711Dec( |
| 108 | const char *name, |
| 109 | c2_node_id_t id, |
| 110 | const std::shared_ptr<IntfImpl> &intfImpl) |
| 111 | : SimpleC2Component(std::make_shared<SimpleInterface<IntfImpl>>(name, id, intfImpl)), |
| 112 | mIntf(intfImpl) { |
| 113 | } |
| 114 | |
| 115 | C2SoftG711Dec::~C2SoftG711Dec() { |
| 116 | onRelease(); |
| 117 | } |
| 118 | |
| 119 | c2_status_t C2SoftG711Dec::onInit() { |
| 120 | mSignalledOutputEos = false; |
| 121 | return C2_OK; |
| 122 | } |
| 123 | |
| 124 | c2_status_t C2SoftG711Dec::onStop() { |
| 125 | mSignalledOutputEos = false; |
| 126 | return C2_OK; |
| 127 | } |
| 128 | |
| 129 | void C2SoftG711Dec::onReset() { |
| 130 | (void)onStop(); |
| 131 | } |
| 132 | |
| 133 | void C2SoftG711Dec::onRelease() { |
| 134 | } |
| 135 | |
| 136 | c2_status_t C2SoftG711Dec::onFlush_sm() { |
| 137 | return onStop(); |
| 138 | } |
| 139 | |
| 140 | void C2SoftG711Dec::process( |
| 141 | const std::unique_ptr<C2Work> &work, |
| 142 | const std::shared_ptr<C2BlockPool> &pool) { |
| 143 | // Initialize output work |
| 144 | work->result = C2_OK; |
| 145 | work->workletsProcessed = 1u; |
| 146 | work->worklets.front()->output.flags = work->input.flags; |
| 147 | |
| 148 | if (mSignalledOutputEos) { |
| 149 | work->result = C2_BAD_VALUE; |
| 150 | return; |
| 151 | } |
| 152 | |
| 153 | C2ReadView rView = mDummyReadView; |
| 154 | size_t inOffset = 0u; |
| 155 | size_t inSize = 0u; |
| 156 | if (!work->input.buffers.empty()) { |
| 157 | rView = work->input.buffers[0]->data().linearBlocks().front().map().get(); |
| 158 | inSize = rView.capacity(); |
| 159 | if (inSize && rView.error()) { |
| 160 | ALOGE("read view map failed %d", rView.error()); |
| 161 | work->result = C2_CORRUPTED; |
| 162 | return; |
| 163 | } |
| 164 | } |
| 165 | bool eos = (work->input.flags & C2FrameData::FLAG_END_OF_STREAM) != 0; |
| 166 | int outSize = inSize * sizeof(int16_t); |
| 167 | |
| 168 | ALOGV("in buffer attr. size %zu timestamp %d frameindex %d", inSize, |
| 169 | (int)work->input.ordinal.timestamp.peeku(), (int)work->input.ordinal.frameIndex.peeku()); |
| 170 | |
| 171 | if (inSize == 0) { |
| 172 | work->worklets.front()->output.flags = work->input.flags; |
| 173 | work->worklets.front()->output.buffers.clear(); |
| 174 | work->worklets.front()->output.ordinal = work->input.ordinal; |
| 175 | if (eos) { |
| 176 | mSignalledOutputEos = true; |
| 177 | ALOGV("signalled EOS"); |
| 178 | } |
| 179 | return; |
| 180 | } |
| 181 | |
| 182 | uint8_t *inputptr = const_cast<uint8_t *>(rView.data() + inOffset); |
| 183 | |
| 184 | std::shared_ptr<C2LinearBlock> block; |
| 185 | C2MemoryUsage usage = { C2MemoryUsage::CPU_READ, C2MemoryUsage::CPU_WRITE }; |
| 186 | c2_status_t err = pool->fetchLinearBlock(outSize, usage, &block); |
| 187 | if (err != C2_OK) { |
| 188 | ALOGE("fetchLinearBlock for Output failed with status %d", err); |
| 189 | work->result = C2_NO_MEMORY; |
| 190 | return; |
| 191 | } |
| 192 | C2WriteView wView = block->map().get(); |
| 193 | if (wView.error()) { |
| 194 | ALOGE("write view map failed %d", wView.error()); |
| 195 | work->result = C2_CORRUPTED; |
| 196 | return; |
| 197 | } |
| 198 | int16_t *outputptr = reinterpret_cast<int16_t *>(wView.data()); |
| 199 | |
| 200 | #ifdef ALAW |
| 201 | DecodeALaw(outputptr, inputptr, inSize); |
| 202 | #else |
| 203 | DecodeMLaw(outputptr, inputptr, inSize); |
| 204 | #endif |
| 205 | |
| 206 | work->worklets.front()->output.flags = work->input.flags; |
| 207 | work->worklets.front()->output.buffers.clear(); |
| 208 | work->worklets.front()->output.buffers.push_back(createLinearBuffer(block)); |
| 209 | work->worklets.front()->output.ordinal = work->input.ordinal; |
| 210 | |
| 211 | if (eos) { |
| 212 | mSignalledOutputEos = true; |
| 213 | ALOGV("signalled EOS"); |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | c2_status_t C2SoftG711Dec::drain( |
| 218 | uint32_t drainMode, |
| 219 | const std::shared_ptr<C2BlockPool> &pool) { |
| 220 | (void) pool; |
| 221 | if (drainMode == NO_DRAIN) { |
| 222 | ALOGW("drain with NO_DRAIN: no-op"); |
| 223 | return C2_OK; |
| 224 | } |
| 225 | if (drainMode == DRAIN_CHAIN) { |
| 226 | ALOGW("DRAIN_CHAIN not supported"); |
| 227 | return C2_OMITTED; |
| 228 | } |
| 229 | |
| 230 | return C2_OK; |
| 231 | } |
| 232 | |
| 233 | #ifdef ALAW |
| 234 | void C2SoftG711Dec::DecodeALaw( |
| 235 | int16_t *out, const uint8_t *in, size_t inSize) { |
| 236 | while (inSize > 0) { |
| 237 | inSize--; |
| 238 | int32_t x = *in++; |
| 239 | |
| 240 | int32_t ix = x ^ 0x55; |
| 241 | ix &= 0x7f; |
| 242 | |
| 243 | int32_t iexp = ix >> 4; |
| 244 | int32_t mant = ix & 0x0f; |
| 245 | |
| 246 | if (iexp > 0) { |
| 247 | mant += 16; |
| 248 | } |
| 249 | |
| 250 | mant = (mant << 4) + 8; |
| 251 | |
| 252 | if (iexp > 1) { |
| 253 | mant = mant << (iexp - 1); |
| 254 | } |
| 255 | |
| 256 | *out++ = (x > 127) ? mant : -mant; |
| 257 | } |
| 258 | } |
| 259 | #else |
| 260 | void C2SoftG711Dec::DecodeMLaw( |
| 261 | int16_t *out, const uint8_t *in, size_t inSize) { |
| 262 | while (inSize > 0) { |
| 263 | inSize--; |
| 264 | int32_t x = *in++; |
| 265 | |
| 266 | int32_t mantissa = ~x; |
| 267 | int32_t exponent = (mantissa >> 4) & 7; |
| 268 | int32_t segment = exponent + 1; |
| 269 | mantissa &= 0x0f; |
| 270 | |
| 271 | int32_t step = 4 << segment; |
| 272 | |
| 273 | int32_t abs = (0x80l << exponent) + step * mantissa + step / 2 - 4 * 33; |
| 274 | |
| 275 | *out++ = (x < 0x80) ? -abs : abs; |
| 276 | } |
| 277 | } |
| 278 | #endif |
| 279 | |
| 280 | class C2SoftG711DecFactory : public C2ComponentFactory { |
| 281 | public: |
| 282 | C2SoftG711DecFactory() : mHelper(std::static_pointer_cast<C2ReflectorHelper>( |
| 283 | GetCodec2PlatformComponentStore()->getParamReflector())) { |
| 284 | } |
| 285 | |
| 286 | virtual c2_status_t createComponent( |
| 287 | c2_node_id_t id, |
| 288 | std::shared_ptr<C2Component>* const component, |
| 289 | std::function<void(C2Component*)> deleter) override { |
| 290 | *component = std::shared_ptr<C2Component>( |
| 291 | new C2SoftG711Dec(COMPONENT_NAME, id, |
| 292 | std::make_shared<C2SoftG711Dec::IntfImpl>(mHelper)), |
| 293 | deleter); |
| 294 | return C2_OK; |
| 295 | } |
| 296 | |
| 297 | virtual c2_status_t createInterface( |
| 298 | c2_node_id_t id, std::shared_ptr<C2ComponentInterface>* const interface, |
| 299 | std::function<void(C2ComponentInterface*)> deleter) override { |
| 300 | *interface = std::shared_ptr<C2ComponentInterface>( |
| 301 | new SimpleInterface<C2SoftG711Dec::IntfImpl>( |
| 302 | COMPONENT_NAME, id, std::make_shared<C2SoftG711Dec::IntfImpl>(mHelper)), |
| 303 | deleter); |
| 304 | return C2_OK; |
| 305 | } |
| 306 | |
| 307 | virtual ~C2SoftG711DecFactory() override = default; |
| 308 | |
| 309 | private: |
| 310 | std::shared_ptr<C2ReflectorHelper> mHelper; |
| 311 | }; |
| 312 | |
| 313 | } // namespace android |
| 314 | |
| 315 | extern "C" ::C2ComponentFactory* CreateCodec2Factory() { |
| 316 | ALOGV("in %s", __func__); |
| 317 | return new ::android::C2SoftG711DecFactory(); |
| 318 | } |
| 319 | |
| 320 | extern "C" void DestroyCodec2Factory(::C2ComponentFactory* factory) { |
| 321 | ALOGV("in %s", __func__); |
| 322 | delete factory; |
| 323 | } |