Home
last modified time | relevance | path

Searched refs:hdr_local (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioUnixfile.cc91 AudioHdr hdr_local; // local copy of header in decode_filehdr() local
137 hdr_local = GetHeader(); in decode_filehdr()
138 hdr_local.sample_rate = ohdr.sample_rate; in decode_filehdr()
139 hdr_local.samples_per_unit = ohdr.samples_per_unit; in decode_filehdr()
140 hdr_local.bytes_per_unit = ohdr.bytes_per_unit; in decode_filehdr()
141 hdr_local.channels = ohdr.channels; in decode_filehdr()
142 hdr_local.encoding = (AudioEncoding) ohdr.encoding; in decode_filehdr()
143 hdr_local.endian = BIG_ENDIAN; // Files are always written in in decode_filehdr()
146 err = SetHeader(hdr_local); in decode_filehdr()
190 AudioHdr hdr_local; // local copy of header in encode_filehdr() local
[all …]
H A DAudioRawPipe.cc42 const AudioHdr& hdr_local, // header in AudioRawPipe() argument
49 SetHeader(hdr_local); in AudioRawPipe()
H A DAudioBuffer.cc193 AudioHdr hdr_local; in GetAddress() local
207 hdr_local = (this->*hfunc)(); in GetAddress()
208 if (hdr_local.Validate()) in GetAddress()
210 addr += hdr_local.Time_to_Bytes(pos); in GetAddress()