Home
last modified time | relevance | path

Searched refs:AudioBuffer (Results 1 – 20 of 20) sorted by relevance

/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioBuffer.cc36 AudioBuffer::
37 AudioBuffer( in AudioBuffer() function in AudioBuffer
45 AudioBuffer::
46 ~AudioBuffer() in ~AudioBuffer()
54 Boolean AudioBuffer::
180 void* AudioBuffer::
188 void* AudioBuffer::
206 hfunc = (AudioHdr(AudioBuffer::*)() const)&AudioBuffer::GetHeader; in GetAddress()
220 size_t AudioBuffer::
228 Double AudioBuffer::
[all …]
H A DAudioTypeMux.cc65 AudioBuffer*& inbuf, // data buffer to process in Convert()
68 AudioBuffer* outbuf; in Convert()
69 AudioBuffer** multibuf; in Convert()
89 multibuf = (AudioBuffer**) inbuf; // Mux multiple buffers in Convert()
120 multibuf = (AudioBuffer**) in Convert()
121 calloc((channels + 1), sizeof (AudioBuffer*)); in Convert()
123 multibuf[i] = new AudioBuffer(length, in Convert()
162 inbuf = (AudioBuffer*) multibuf; in Convert()
168 outbuf = new AudioBuffer(length, in Convert()
178 multibuf = (AudioBuffer**) inbuf; in Convert()
[all …]
H A DAudioTypeSampleRate.cc75 AudioBuffer*& inbuf, // data buffer to process in Convert()
78 AudioBuffer* outbuf; in Convert()
125 outbuf = new AudioBuffer(length, "(SampleRate conversion buffer)"); in Convert()
166 AudioBuffer*& outbuf) in Flush()
H A DAudioTypeChannel.cc66 AudioBuffer*& inbuf, // data buffer to process in Convert()
69 AudioBuffer* outbuf; in Convert()
117 outbuf = new AudioBuffer(length, "(Channel conversion buffer)"); in Convert()
205 AudioBuffer*& /* buf */) in Flush() argument
H A DAudioTypeG72X.cc95 AudioBuffer*& inbuf, // data buffer to process in Convert()
98 AudioBuffer* outbuf; in Convert()
137 outbuf = new AudioBuffer(length + pad, "(G72x conversion buffer)"); in Convert()
240 AudioBuffer*& outbuf) in Flush()
H A DAudioGain.cc176 AudioBuffer* inbuf, in Process()
235 AudioBuffer* inbuf) in process_dcfilter()
288 AudioBuffer* inbuf) in process_instant()
337 AudioBuffer* inbuf) in process_weighted()
H A DAudioTypePcm.cc209 AudioBuffer*& inbuf, // data buffer to process in Convert()
212 AudioBuffer* outbuf; in Convert()
244 outbuf = new AudioBuffer(length, "(PCM conversion buffer)"); in Convert()
495 AudioBuffer*& /* buf */) in Flush() argument
H A DAudio.cc334 AudioBuffer* tob; in AsyncCopy()
348 tob = (AudioBuffer*) to; in AsyncCopy()
H A DMakefile63 AudioBuffer.cc \
/illumos-gate/usr/src/cmd/audio/include/
H A DAudioGain.h70 AudioBuffer*);
73 AudioBuffer*);
76 AudioBuffer*);
88 AudioBuffer*, int); // buffer destroyed if not referenced!
H A DAudioBuffer.h40 class AudioBuffer : public AudioStream {
54 AudioBuffer(
57 ~AudioBuffer(); // Destructor
H A DAudioTypeChannel.h58 AudioBuffer*& inbuf, // data buffer to process
61 virtual AudioError Flush(AudioBuffer*& buf);
H A DAudioTypeMux.h56 AudioBuffer*& inbuf, // data buffer to process
59 virtual AudioError Flush(AudioBuffer*& buf);
H A DAudioTypeConvert.h59 AudioBuffer*& inbuf, // data buffer to process
62 virtual AudioError Flush(AudioBuffer*& buf) = 0; // flush any remaining
H A DAudioTypeG72X.h61 AudioBuffer*& inbuf, // data buffer to process
64 virtual AudioError Flush(AudioBuffer*& buf);
H A DAudioTypeSampleRate.h60 AudioBuffer*& inbuf, // data buffer to process
63 virtual AudioError Flush(AudioBuffer*& buf); // flush remains
H A DAudioTypePcm.h112 AudioBuffer*& inbuf, // data buffer to process
115 virtual AudioError Flush(AudioBuffer*& buf);
/illumos-gate/usr/src/cmd/audio/audioconvert/
H A Dconvert.h48 extern AudioBuffer* create_buffer(Audio*);
56 extern AudioError write_output(AudioBuffer*, AudioStream*);
H A Dconvert.cc674 AudioBuffer* obuf; in do_convert()
675 AudioBuffer** multibuf; in do_convert()
735 if (!(obuf = new AudioBuffer(cvtlen, MGET("Audio Convert Buffer")))) { in do_convert()
765 multibuf = (AudioBuffer**)obuf; in do_convert()
802 multibuf = (AudioBuffer**)obuf; in do_convert()
H A Dfile.cc55 write_output(AudioBuffer* buf, AudioStream* ofp) in write_output()