Lines Matching refs:hdr_local
93 AudioHdr hdr_local; // local copy of header
139 hdr_local = GetHeader();
140 hdr_local.sample_rate = ohdr.sample_rate;
141 hdr_local.samples_per_unit = ohdr.samples_per_unit;
142 hdr_local.bytes_per_unit = ohdr.bytes_per_unit;
143 hdr_local.channels = ohdr.channels;
144 hdr_local.encoding = (AudioEncoding) ohdr.encoding;
145 hdr_local.endian = BIG_ENDIAN; // Files are always written in
148 err = SetHeader(hdr_local);
192 AudioHdr hdr_local; // local copy of header
201 hdr_local = GetHeader();
202 hdr_local.endian = BIG_ENDIAN; // Files are always written big endian.
203 err = SetHeader(hdr_local);
208 ohdr.sample_rate = hdr_local.sample_rate;
209 ohdr.samples_per_unit = hdr_local.samples_per_unit;
210 ohdr.bytes_per_unit = hdr_local.bytes_per_unit;
211 ohdr.channels = hdr_local.channels;
212 ohdr.encoding = hdr_local.encoding;