Searched refs:sndfile (Results 1 – 7 of 7) sorted by relevance
/frameworks/wilhelm/tests/sandbox/ |
D | playbq.cpp | 40 SNDFILE *sndfile; variable 126 count = sf_readf_float(sndfile, (float *) temp, READ_FRAMES); in file_reader_loop() 130 count = sf_readf_int(sndfile, (int *) temp, READ_FRAMES); in file_reader_loop() 134 count = sf_readf_short(sndfile, (short *) temp, READ_FRAMES); in file_reader_loop() 264 sndfile = sf_open(filename, SFM_READ, &sfinfo); in main() 265 if (NULL == sndfile) { in main() 504 count = sf_readf_float(sndfile, (float *) buffer, frames); in main() 507 count = sf_readf_int(sndfile, (int *) buffer, frames); in main() 510 count = sf_readf_int(sndfile, (int *) buffer, frames); in main() 514 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 | 374 SNDFILE *sndfile; in main() local 382 sndfile = sf_open(outFileName, SFM_WRITE, &info); in main() 383 if (sndfile != NULL) { in main() 393 sndfile = NULL; in main() 564 (void) sf_writef_short(sndfile, buffer, (sf_count_t) actual); in main() 600 if (sndfile != NULL) { in main() 609 sf_close(sndfile); in main() 610 sndfile = NULL; in main()
|
/frameworks/av/media/libnbaio/include/ |
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);
|