Home | History | Annotate | Download | only in libmedia

Lines Matching refs:outputDesc

266     OutputDescriptor *outputDesc = AudioSystem::gOutputs.valueFor(output);
267 if (outputDesc == NULL) {
274 *samplingRate = outputDesc->samplingRate;
310 OutputDescriptor *outputDesc = AudioSystem::gOutputs.valueFor(output);
311 if (outputDesc == NULL) {
316 *frameCount = outputDesc->frameCount;
352 OutputDescriptor *outputDesc = AudioSystem::gOutputs.valueFor(output);
353 if (outputDesc == NULL) {
358 *latency = outputDesc->latency;
500 OutputDescriptor *outputDesc = new OutputDescriptor(*desc);
501 gOutputs.add(ioHandle, outputDesc);
504 outputDesc->samplingRate, outputDesc->format, outputDesc->channelMask,
505 outputDesc->frameCount, outputDesc->latency);
530 OutputDescriptor *outputDesc = gOutputs.valueAt(index);
531 delete outputDesc;
532 outputDesc = new OutputDescriptor(*desc);
533 gOutputs.replaceValueFor(ioHandle, outputDesc);