OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:frames_written
(Results
1 - 3
of
3
) sorted by null
/external/bluetooth/bluez/audio/
android_audio_hw.c
405
size_t
frames_written
= 0;
local
432
while (
frames_written
< frames_total) {
444
if (frames > frames_total -
frames_written
) {
445
frames = frames_total -
frames_written
;
447
memcpy(out->buf + out->buf_wr_idx, buf +
frames_written
, frames * sizeof(uint32_t));
448
frames_written
+= frames;
/external/flac/include/FLAC/
stream_encoder.h
671
* \param
frames_written
Frames written so far.
677
typedef void (*FLAC__StreamEncoderProgressCallback)(const FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, unsigned
frames_written
, unsigned total_frames_estimate, void *client_data);
[
all
...]
/external/flac/libFLAC/
stream_encoder.c
401
unsigned
frames_written
;
member in struct:FLAC__StreamEncoderPrivate
[
all
...]
Completed in 100 milliseconds