Lines Matching refs:sample
85 * atc_length[3] if sample rate 0, [2]&0xfe = 6: 33kHz, 0x10:50, 0xf6: 16,
140 /* Jump 6 bytes (dummp_aeg), read format, read sample rate. */
241 short sample ;
253 { sample = (ucptr [0] << 8) | (ucptr [1] & 0xF0) ;
254 ptr [total + k] = sample ;
255 sample = (ucptr [2] << 8) | ((ucptr [1] & 0xF) << 4) ;
256 ptr [total + k + 1] = sample ;
271 short sample ;
283 { sample = (ucptr [0] << 8) | (ucptr [1] & 0xF0) ;
284 ptr [total + k] = sample << 16 ;
285 sample = (ucptr [2] << 8) | ((ucptr [1] & 0xF) << 4) ;
286 ptr [total + k + 1] = sample << 16 ;
301 short sample ;
319 { sample = (ucptr [0] << 8) | (ucptr [1] & 0xF0) ;
320 ptr [total + k] = normfact * sample ;
321 sample = (ucptr [2] << 8) | ((ucptr [1] & 0xF) << 4) ;
322 ptr [total + k + 1] = normfact * sample ;
337 short sample ;
355 { sample = (ucptr [0] << 8) | (ucptr [1] & 0xF0) ;
356 ptr [total + k] = normfact * sample ;
357 sample = (ucptr [2] << 8) | ((ucptr [1] & 0xF) << 4) ;
358 ptr [total + k + 1] = normfact * sample ;