Home | History | Annotate | Download | only in alsa_utils

Lines Matching refs:formats

66     profile->formats[0] = PCM_FORMAT_INVALID;
169 return profile_is_valid(profile) ? profile->formats[0] : DEFAULT_SAMPLE_FORMAT;
175 for (index = 0; profile->formats[index] != PCM_FORMAT_INVALID; index++) {
176 if (profile->formats[index] == fmt) {
273 profile->formats[num_written++] = format;
274 if (num_written == ARRAY_SIZE(profile->formats) - 1) {
285 profile->formats[num_written] = PCM_FORMAT_INVALID;
402 /* Formats */
467 for (index = 0; profile->formats[index] != PCM_FORMAT_INVALID; index++) {
469 if (buffSize - curStrLen < strlen(format_string_map[profile->formats[index]])
479 curStrLen = strlcat(buffer, format_string_map[profile->formats[index]], buffSize);
600 /* formats */
601 dprintf(fd, " Formats: ");
603 profile->formats[fmtIndex] != PCM_FORMAT_INVALID && fmtIndex < MAX_PROFILE_FORMATS;
605 dprintf(fd, "%d ", profile->formats[fmtIndex]);