Lines Matching refs:mark
187 aiffinfo->mark.chunk[0] = 'M'; in aiffCreateMark()
188 aiffinfo->mark.chunk[1] = 'A'; in aiffCreateMark()
189 aiffinfo->mark.chunk[2] = 'R'; in aiffCreateMark()
190 aiffinfo->mark.chunk[3] = 'K'; in aiffCreateMark()
191 aiffinfo->mark.bytes[0] = 0; in aiffCreateMark()
192 aiffinfo->mark.bytes[1] = 0; in aiffCreateMark()
193 aiffinfo->mark.bytes[2] = 0; in aiffCreateMark()
194 aiffinfo->mark.bytes[3] = 35; in aiffCreateMark()
195 aiffinfo->mark.count[0] = 0; in aiffCreateMark()
196 aiffinfo->mark.count[1] = 2; in aiffCreateMark()
197 aiffinfo->mark.id0[0] = 0; in aiffCreateMark()
198 aiffinfo->mark.id0[1] = 0; in aiffCreateMark()
199 aiffinfo->mark.position0[0] = (u8)(0xFF & (startloop >> 24)); in aiffCreateMark()
200 aiffinfo->mark.position0[1] = (u8)(0xFF & (startloop >> 16)); in aiffCreateMark()
201 aiffinfo->mark.position0[2] = (u8)(0xFF & (startloop >> 8)); in aiffCreateMark()
202 aiffinfo->mark.position0[3] = (u8)(0xFF & startloop); in aiffCreateMark()
203 aiffinfo->mark.ch0[0] = 0x08; in aiffCreateMark()
204 aiffinfo->mark.ch0[1] = 'b'; in aiffCreateMark()
205 aiffinfo->mark.ch0[2] = 'e'; in aiffCreateMark()
206 aiffinfo->mark.ch0[3] = 'g'; in aiffCreateMark()
207 aiffinfo->mark.ch0[4] = ' '; in aiffCreateMark()
208 aiffinfo->mark.ch0[5] = 'l'; in aiffCreateMark()
209 aiffinfo->mark.ch0[6] = 'o'; in aiffCreateMark()
210 aiffinfo->mark.ch0[7] = 'o'; in aiffCreateMark()
211 aiffinfo->mark.ch0[8] = 'p'; in aiffCreateMark()
212 aiffinfo->mark.ch0[9] = 0; in aiffCreateMark()
213 aiffinfo->mark.id1[0] = 0; in aiffCreateMark()
214 aiffinfo->mark.id1[1] = 1; in aiffCreateMark()
215 aiffinfo->mark.position1[0] = (u8)(0xFF & (endloop >> 24)); in aiffCreateMark()
216 aiffinfo->mark.position1[1] = (u8)(0xFF & (endloop >> 16)); in aiffCreateMark()
217 aiffinfo->mark.position1[2] = (u8)(0xFF & (endloop >> 8)); in aiffCreateMark()
218 aiffinfo->mark.position1[3] = (u8)(0xFF & endloop); in aiffCreateMark()
219 aiffinfo->mark.ch1[0] = 0x30; in aiffCreateMark()
220 aiffinfo->mark.ch1[1] = 0x08; in aiffCreateMark()
221 aiffinfo->mark.ch1[2] = 'e'; in aiffCreateMark()
222 aiffinfo->mark.ch1[3] = 'n'; in aiffCreateMark()
223 aiffinfo->mark.ch1[4] = 'd'; in aiffCreateMark()
224 aiffinfo->mark.ch1[5] = ' '; in aiffCreateMark()
225 aiffinfo->mark.ch1[6] = 'l'; in aiffCreateMark()
226 aiffinfo->mark.ch1[7] = 'o'; in aiffCreateMark()
227 aiffinfo->mark.ch1[8] = 'o'; in aiffCreateMark()
228 aiffinfo->mark.ch1[9] = 'p'; in aiffCreateMark()
229 aiffinfo->mark.ch1[10] = 0; in aiffCreateMark()
237 fwrite(&aiffinfo->mark, sizeof(AIFFMARK), 1, outfile); in aiffWriteMark()
282 aiffinfo->mark.position0[0] = in aiffReadHeader()
283 aiffinfo->mark.position0[1] = in aiffReadHeader()
284 aiffinfo->mark.position0[2] = in aiffReadHeader()
285 aiffinfo->mark.position0[3] = in aiffReadHeader()
286 aiffinfo->mark.position1[0] = in aiffReadHeader()
287 aiffinfo->mark.position1[1] = in aiffReadHeader()
288 aiffinfo->mark.position1[2] = in aiffReadHeader()
289 aiffinfo->mark.position1[3] = 0; in aiffReadHeader()
343 aiffinfo->mark.position0[0] = (u8)(0xFF & (position >> 24)); in aiffReadHeader()
344 aiffinfo->mark.position0[1] = (u8)(0xFF & (position >> 16)); in aiffReadHeader()
345 aiffinfo->mark.position0[2] = (u8)(0xFF & (position >> 8)); in aiffReadHeader()
346 aiffinfo->mark.position0[3] = (u8)(0xFF & position); in aiffReadHeader()
352 aiffinfo->mark.position1[0] = (u8)(0xFF & (position >> 24)); in aiffReadHeader()
353 aiffinfo->mark.position1[1] = (u8)(0xFF & (position >> 16)); in aiffReadHeader()
354 aiffinfo->mark.position1[2] = (u8)(0xFF & (position >> 8)); in aiffReadHeader()
355 aiffinfo->mark.position1[3] = (u8)(0xFF & position); in aiffReadHeader()
385 aiffinfo->mark.position0[0] = 0; in aiffReadHeader()
386 aiffinfo->mark.position0[1] = 0; in aiffReadHeader()
387 aiffinfo->mark.position0[2] = 0; in aiffReadHeader()
388 aiffinfo->mark.position0[3] = 0; in aiffReadHeader()
389 aiffinfo->mark.position1[0] = 0; in aiffReadHeader()
390 aiffinfo->mark.position1[1] = 0; in aiffReadHeader()
391 aiffinfo->mark.position1[2] = 0; in aiffReadHeader()
392 aiffinfo->mark.position1[3] = 0; in aiffReadHeader()
467 return (aiffinfo->mark.position0[0] << 24) | in aiffGetLoopStart()
468 (aiffinfo->mark.position0[1] << 16) | in aiffGetLoopStart()
469 (aiffinfo->mark.position0[2] << 8) | in aiffGetLoopStart()
470 aiffinfo->mark.position0[3]; in aiffGetLoopStart()
477 return ((aiffinfo->mark.position1[0] << 24) | in aiffGetLoopEnd()
478 (aiffinfo->mark.position1[1] << 16) | in aiffGetLoopEnd()
479 (aiffinfo->mark.position1[2] << 8) | in aiffGetLoopEnd()
480 aiffinfo->mark.position1[3]); in aiffGetLoopEnd()