/hardware/qcom/audio/hal/msm8974/ |
D | platform.c | 176 struct csd_data *csd; member 1135 struct csd_data *csd = calloc(1, sizeof(struct csd_data)); in open_csd_client() local 1137 csd->csd_client = dlopen(LIB_CSD_CLIENT, RTLD_NOW); in open_csd_client() 1138 if (csd->csd_client == NULL) { in open_csd_client() 1144 csd->deinit = (deinit_t)dlsym(csd->csd_client, in open_csd_client() 1146 if (csd->deinit == NULL) { in open_csd_client() 1151 csd->disable_device = (disable_device_t)dlsym(csd->csd_client, in open_csd_client() 1153 if (csd->disable_device == NULL) { in open_csd_client() 1158 csd->enable_device_config = (enable_device_config_t)dlsym(csd->csd_client, in open_csd_client() 1160 if (csd->enable_device_config == NULL) { in open_csd_client() [all …]
|
/hardware/google/av/media/codecs/cmds/ |
D | codec2.cpp | 296 sp<ABuffer> csd; in play() local 298 csd = csd0; in play() 301 csd = csd1; in play() 321 if (csd != nullptr) { in play() 322 size = csd->size(); in play() 323 data = csd->data(); in play()
|
/hardware/google/av/media/codecs/aac/ |
D | C2SoftAacEnc.cpp | 323 std::unique_ptr<C2StreamCsdInfo::output> csd = in process() local 325 if (!csd) { in process() 331 memcpy(csd->m.value, encInfo.confBuf, encInfo.confSize); in process() 334 hexdump(csd->m.value, csd->flexCount()); in process() 336 work->worklets.front()->output.configUpdate.push_back(std::move(csd)); in process()
|
/hardware/google/av/codec2/hidl/1.0/mts/common/ |
D | media_c2_hidl_test_common.cpp | 85 std::list<std::unique_ptr<C2Work>>& workQueue, bool& eos, bool& csd, in workDone() argument 97 csd = true; in workDone()
|
D | media_c2_hidl_test_common.h | 198 std::list<std::unique_ptr<C2Work>>& workQueue, bool& eos, bool& csd,
|
/hardware/google/av/media/codecs/flac/ |
D | C2SoftFlacEnc.cpp | 212 std::unique_ptr<C2StreamCsdInfo::output> csd = in process() local 214 if (!csd) { in process() 220 memcpy(csd->m.value, mHeader, mHeaderOffset); in process() 223 work->worklets.front()->output.configUpdate.push_back(std::move(csd)); in process()
|
/hardware/google/av/media/codecs/mpeg4_h263/ |
D | C2SoftMpeg4Enc.cpp | 449 std::unique_ptr<C2StreamCsdInfo::output> csd = in process() local 451 if (!csd) { in process() 457 memcpy(csd->m.value, outPtr, outputSize); in process() 458 work->worklets.front()->output.configUpdate.push_back(std::move(csd)); in process()
|
/hardware/google/av/media/codecs/avc/ |
D | C2SoftAvcEnc.cpp | 1331 std::unique_ptr<C2StreamCsdInfo::output> csd = in process() local 1333 if (!csd) { in process() 1339 memcpy(csd->m.value, header, s_encode_op.s_out_buf.u4_bytes); in process() 1340 work->worklets.front()->output.configUpdate.push_back(std::move(csd)); in process() 1343 mOutFile, csd->m.value, csd->flexCount()); in process()
|
/hardware/google/av/media/sfplugin/ |
D | CCodecBufferChannel.cpp | 1122 const C2StreamCsdInfo::output *csd, in registerCsd() argument 1129 [csd](const sp<Codec2Buffer> &clientBuffer) { in registerCsd() 1131 && clientBuffer->capacity() >= csd->flexCount(); in registerCsd() 1136 memcpy(c2Buffer->base(), csd->m.value, csd->flexCount()); in registerCsd() 1137 c2Buffer->setRange(0, csd->flexCount()); in registerCsd() 1213 const C2StreamCsdInfo::output *csd, in registerCsd() argument 1217 mFormat, ABuffer::CreateAsCopy(csd->m.value, csd->flexCount())); in registerCsd()
|
D | CCodec.cpp | 833 sp<ABuffer> csd; in configure() local 834 for (size_t ix = 0; msg->findBuffer(StringPrintf("csd-%zu", ix).c_str(), &csd); ++ix) { in configure() 835 if (csd && csd->size() > maxInputSize.value) { in configure() 836 maxInputSize.value = csd->size(); in configure()
|