OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sndfile
(Results
1 - 3
of
3
) sorted by null
/frameworks/wilhelm/tests/examples/
slesTestRecBuffQueue.cpp
36
#include <audio_utils/
sndfile
.h>
67
SNDFILE
*
sndfile
;
variable
128
(void) sf_writef_short(
sndfile
, (const short *) temp, frameCount);
131
(void) sf_writef_short(
sndfile
, (const short *) pCntxt->pDataBase, frameCount);
134
(void) sf_writef_int(
sndfile
, (const int *) pCntxt->pDataBase, frameCount);
137
(void) sf_writef_float(
sndfile
, (const float *) pCntxt->pDataBase, frameCount);
188
sndfile
= sf_open(path, SFM_WRITE, &info);
189
if (
sndfile
== NULL) {
482
sf_close(
sndfile
);
[
all
...]
slesTestFeedback.cpp
31
#include <audio_utils/
sndfile
.h>
374
SNDFILE
*
sndfile
;
local
382
sndfile
= sf_open(outFileName, SFM_WRITE, &info);
383
if (
sndfile
!= NULL) {
393
sndfile
= NULL;
564
(void) sf_writef_short(
sndfile
, buffer, (sf_count_t) actual);
600
if (
sndfile
!= NULL) {
609
sf_close(
sndfile
);
610
sndfile
= NULL
[
all
...]
/frameworks/wilhelm/tests/sandbox/
playbq.cpp
33
#include <audio_utils/
sndfile
.h>
40
SNDFILE
*
sndfile
;
variable
109
count = sf_readf_float(
sndfile
, (float *) temp, READ_FRAMES);
113
count = sf_readf_int(
sndfile
, (int *) temp, READ_FRAMES);
117
count = sf_readf_short(
sndfile
, (short *) temp, READ_FRAMES);
247
sndfile
= sf_open(filename, SFM_READ, &sfinfo);
248
if (NULL ==
sndfile
) {
487
count = sf_readf_float(
sndfile
, (float *) buffer, frames);
490
count = sf_readf_int(
sndfile
, (int *) buffer, frames)
[
all
...]
Completed in 90 milliseconds