OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:waveinfo
(Results
1 - 3
of
3
) sorted by null
/external/srec/srec/EventLog/src/
EventLogImpl.c
609
header.
waveinfo
.nFormatTag = WAVEFORMAT_PCM; /* codec */
610
header.
waveinfo
.nChannels = 1;
611
header.
waveinfo
.nSamplesPerSec = impl->waveform_sample_rate;
612
header.
waveinfo
.nAvgBytesPerSec = bytes_sec;
613
header.
waveinfo
.nBlockAlign = (unsigned short) impl->waveform_bytes_per_sample;
614
header.
waveinfo
.wBitsPerSample = (unsigned short)((bytes_sec * 8) / impl->waveform_sample_rate);
627
pfwrite(&header.
waveinfo
.nFormatTag, sizeof(header.
waveinfo
.nFormatTag), 1, impl->waveformFile);
628
pfwrite(&header.
waveinfo
.nChannels, sizeof(header.
waveinfo
.nChannels), 1, impl->waveformFile)
[
all
...]
riff.c
1032
header.
waveinfo
.nFormatTag = swapConstShort(format_tag); /* codec */
1033
header.
waveinfo
.nChannels = swapConstShort(num_channels);
1034
header.
waveinfo
.nSamplesPerSec = swapConstInt(rate);
1035
header.
waveinfo
.nAvgBytesPerSec = swapConstInt(bytes_sec);
1036
header.
waveinfo
.nBlockAlign = swapConstShort(block_align);
1037
header.
waveinfo
.wBitsPerSample = swapConstShort((short)((bytes_sec * 8) / rate));
1049
header.
waveinfo
.nFormatTag = format_tag; /* codec */
1050
header.
waveinfo
.nChannels = num_channels;
1051
header.
waveinfo
.nSamplesPerSec = rate;
1052
header.
waveinfo
.nAvgBytesPerSec = bytes_sec
[
all
...]
/external/srec/srec/EventLog/include/
riff.h
116
WaveFormat
waveinfo
;
member in struct:__anon13921
Completed in 21 milliseconds