Home | History | Annotate | Download | only in audio_utils

Lines Matching full:temp

24     uint8_t *temp;  // realloc buffer used for shrinking 16 bits to 8 bits and byte-swapping
99 handle->temp = NULL;
157 handle->temp = NULL;
183 free(handle->temp);
232 handle->temp = realloc(handle->temp, desiredBytes);
233 memcpy_to_u8_from_i16(handle->temp, ptr, desiredBytes);
234 actualBytes = fwrite(handle->temp, sizeof(char), desiredBytes, handle->stream);
241 handle->temp = realloc(handle->temp, desiredBytes);
242 memcpy(handle->temp, ptr, desiredBytes);
243 my_swab((short *) handle->temp, desiredFrames * handle->info.channels);
244 actualBytes = fwrite(handle->temp, sizeof(char), desiredBytes, handle->stream);