Home | History | Annotate | Download | only in managerdefault

Lines Matching refs:formats

3659         // erase all current sample rates, formats and channel masks
3905 // erase all current sample rates, formats and channel masks
5313 // Modify the list of surround sound formats supported.
5315 FormatVector &formats = *formatsPtr;
5323 // Analyze original support for various formats.
5327 for (size_t formatIndex = 0; formatIndex < formats.size(); formatIndex++) {
5328 audio_format_t format = formats[formatIndex];
5346 // Modify formats based on surround preferences.
5347 // If NEVER, remove support for surround formats.
5350 // Remove surround sound related formats.
5351 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5352 audio_format_t format = formats[formatIndex];
5359 formats.removeAt(formatIndex);
5374 formats.add(AUDIO_FORMAT_AC3);
5378 // If ALWAYS, add support for raw surround formats if all are missing.
5379 // This assumes that if any of these formats are reported by the HAL
5383 formats.add(AUDIO_FORMAT_E_AC3);
5384 formats.add(AUDIO_FORMAT_DTS);
5385 formats.add(AUDIO_FORMAT_DTS_HD);
5392 formats.add(AUDIO_FORMAT_IEC61937);
5444 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
5451 FormatVector formats = formatsFromString(reply.string());
5453 filterSurroundFormats(&formats);
5455 profiles.setFormats(formats);