Home
last modified time | relevance | path

Searched refs:csd (Results 1 – 10 of 10) sorted by relevance

/hardware/qcom/audio/hal/msm8974/
Dplatform.c176 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/
Dcodec2.cpp296 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/
DC2SoftAacEnc.cpp323 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/
Dmedia_c2_hidl_test_common.cpp85 std::list<std::unique_ptr<C2Work>>& workQueue, bool& eos, bool& csd, in workDone() argument
97 csd = true; in workDone()
Dmedia_c2_hidl_test_common.h198 std::list<std::unique_ptr<C2Work>>& workQueue, bool& eos, bool& csd,
/hardware/google/av/media/codecs/flac/
DC2SoftFlacEnc.cpp212 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/
DC2SoftMpeg4Enc.cpp449 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/
DC2SoftAvcEnc.cpp1331 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/
DCCodecBufferChannel.cpp1122 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()
DCCodec.cpp833 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()