HomeSort by relevance Sort by last modified time
    Searched defs:sndfile (Results 1 - 4 of 4) sorted by null

  /frameworks/wilhelm/tests/examples/
slesTestFeedback.cpp 31 #include <audio_utils/sndfile.h>
368 SNDFILE *sndfile; local
376 sndfile = sf_open(outFileName, SFM_WRITE, &info);
377 if (sndfile != NULL) {
385 sndfile = NULL;
556 (void) sf_writef_short(sndfile, buffer, (sf_count_t) actual);
586 if (sndfile != NULL) {
589 sf_close(sndfile);
slesTestRecBuffQueue.cpp 36 #include <audio_utils/sndfile.h>
63 SNDFILE *sndfile; variable
123 (void) sf_writef_short(sndfile, (const short *) temp, frameCount);
126 (void) sf_writef_short(sndfile, (const short *) pCntxt->pDataBase, frameCount);
129 (void) sf_writef_int(sndfile, (const int *) pCntxt->pDataBase, frameCount);
132 (void) sf_writef_float(sndfile, (const float *) pCntxt->pDataBase, frameCount);
183 sndfile = sf_open(path, SFM_WRITE, &info);
184 if (sndfile == NULL) {
397 sf_close(sndfile);
    [all...]
  /frameworks/wilhelm/tests/sandbox/
playbq.c 33 #include <audio_utils/sndfile.h>
40 SNDFILE *sndfile; variable
124 count = sf_readf_float(sndfile, (float *) temp, READ_FRAMES);
128 count = sf_readf_int(sndfile, (int *) temp, READ_FRAMES);
132 count = sf_readf_short(sndfile, (short *) temp, READ_FRAMES);
262 sndfile = sf_open(filename, SFM_READ, &sfinfo);
263 if (NULL == sndfile) {
502 count = sf_readf_float(sndfile, (float *) buffer, frames);
505 count = sf_readf_int(sndfile, (int *) buffer, frames)
    [all...]
playbq.cpp 33 #include <audio_utils/sndfile.h>
40 SNDFILE *sndfile; variable
124 count = sf_readf_float(sndfile, (float *) temp, READ_FRAMES);
128 count = sf_readf_int(sndfile, (int *) temp, READ_FRAMES);
132 count = sf_readf_short(sndfile, (short *) temp, READ_FRAMES);
262 sndfile = sf_open(filename, SFM_READ, &sfinfo);
263 if (NULL == sndfile) {
502 count = sf_readf_float(sndfile, (float *) buffer, frames);
505 count = sf_readf_int(sndfile, (int *) buffer, frames)
    [all...]

Completed in 125 milliseconds