Home
last modified time | relevance | path

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

/titanic_50/usr/src/cmd/audio/utilities/
H A DAudioUnixfile.cc93 AudioHdr hdr_local; // local copy of header in decode_filehdr() local
139 hdr_local = GetHeader(); in decode_filehdr()
140 hdr_local.sample_rate = ohdr.sample_rate; in decode_filehdr()
141 hdr_local.samples_per_unit = ohdr.samples_per_unit; in decode_filehdr()
142 hdr_local.bytes_per_unit = ohdr.bytes_per_unit; in decode_filehdr()
143 hdr_local.channels = ohdr.channels; in decode_filehdr()
144 hdr_local.encoding = (AudioEncoding) ohdr.encoding; in decode_filehdr()
145 hdr_local.endian = BIG_ENDIAN; // Files are always written in in decode_filehdr()
148 err = SetHeader(hdr_local); in decode_filehdr()
192 AudioHdr hdr_local; // local copy of header in encode_filehdr() local
[all …]
H A DAudioRawPipe.cc44 const AudioHdr& hdr_local, // header in AudioRawPipe() argument
51 SetHeader(hdr_local); in AudioRawPipe()
H A DAudioBuffer.cc195 AudioHdr hdr_local; in GetAddress() local
209 hdr_local = (this->*hfunc)(); in GetAddress()
210 if (hdr_local.Validate()) in GetAddress()
212 addr += hdr_local.Time_to_Bytes(pos); in GetAddress()