Searched refs:sndfile (Results 1 – 8 of 8) sorted by relevance
/frameworks/wilhelm/tests/sandbox/ |
D | playbq.cpp | 40 SNDFILE *sndfile; variable 124 count = sf_readf_float(sndfile, (float *) temp, READ_FRAMES); in file_reader_loop() 128 count = sf_readf_int(sndfile, (int *) temp, READ_FRAMES); in file_reader_loop() 132 count = sf_readf_short(sndfile, (short *) temp, READ_FRAMES); in file_reader_loop() 262 sndfile = sf_open(filename, SFM_READ, &sfinfo); in main() 263 if (NULL == sndfile) { in main() 502 count = sf_readf_float(sndfile, (float *) buffer, frames); in main() 505 count = sf_readf_int(sndfile, (int *) buffer, frames); in main() 508 count = sf_readf_int(sndfile, (int *) buffer, frames); in main() 512 count = sf_readf_short(sndfile, (short *) buffer, frames); in main() [all …]
|
D | playbq.c | 40 SNDFILE *sndfile; variable 124 count = sf_readf_float(sndfile, (float *) temp, READ_FRAMES); in file_reader_loop() 128 count = sf_readf_int(sndfile, (int *) temp, READ_FRAMES); in file_reader_loop() 132 count = sf_readf_short(sndfile, (short *) temp, READ_FRAMES); in file_reader_loop() 262 sndfile = sf_open(filename, SFM_READ, &sfinfo); in main() 263 if (NULL == sndfile) { in main() 502 count = sf_readf_float(sndfile, (float *) buffer, frames); in main() 505 count = sf_readf_int(sndfile, (int *) buffer, frames); in main() 508 count = sf_readf_int(sndfile, (int *) buffer, frames); in main() 512 count = sf_readf_short(sndfile, (short *) buffer, frames); in main() [all …]
|
/frameworks/av/media/libnbaio/ |
D | LibsndfileSink.cpp | 26 LibsndfileSink::LibsndfileSink(SNDFILE *sndfile, const SF_INFO &sfinfo) : in LibsndfileSink() argument 28 mSndfile(sndfile) in LibsndfileSink()
|
D | LibsndfileSource.cpp | 26 LibsndfileSource::LibsndfileSource(SNDFILE *sndfile, const SF_INFO &sfinfo, bool loop) : in LibsndfileSource() argument 28 mSndfile(sndfile), in LibsndfileSource()
|
/frameworks/wilhelm/tests/examples/ |
D | slesTestRecBuffQueue.cpp | 67 SNDFILE *sndfile; variable 127 (void) sf_writef_short(sndfile, (const short *) temp, frameCount); in RecBufferQueueCallback() 130 (void) sf_writef_short(sndfile, (const short *) pCntxt->pDataBase, frameCount); in RecBufferQueueCallback() 133 (void) sf_writef_int(sndfile, (const int *) pCntxt->pDataBase, frameCount); in RecBufferQueueCallback() 136 (void) sf_writef_float(sndfile, (const float *) pCntxt->pDataBase, frameCount); in RecBufferQueueCallback() 187 sndfile = sf_open(path, SFM_WRITE, &info); in TestRecToBuffQueue() 188 if (sndfile == NULL) { in TestRecToBuffQueue() 481 sf_close(sndfile); in TestRecToBuffQueue()
|
D | slesTestFeedback.cpp | 368 SNDFILE *sndfile; in main() local 376 sndfile = sf_open(outFileName, SFM_WRITE, &info); in main() 377 if (sndfile != NULL) { in main() 385 sndfile = NULL; in main() 556 (void) sf_writef_short(sndfile, buffer, (sf_count_t) actual); in main() 586 if (sndfile != NULL) { in main() 589 sf_close(sndfile); in main()
|
/frameworks/av/include/media/nbaio/ |
D | LibsndfileSink.h | 30 LibsndfileSink(SNDFILE *sndfile, const SF_INFO &sfinfo);
|
D | LibsndfileSource.h | 31 LibsndfileSource(SNDFILE *sndfile, const SF_INFO &sfinfo, bool loop = false);
|