/illumos-gate/usr/src/cmd/audio/utilities/ |
H A D | AudioBuffer.cc | 36 AudioBuffer:: 37 AudioBuffer( in AudioBuffer() function in AudioBuffer 45 AudioBuffer:: 46 ~AudioBuffer() in ~AudioBuffer() 54 Boolean AudioBuffer:: 64 AudioError AudioBuffer:: 180 void* AudioBuffer:: 188 void* AudioBuffer:: 194 AudioHdr(AudioBuffer::*hfunc)()const; in GetAddress() 206 hfunc = (AudioHdr(AudioBuffer::*)() const)&AudioBuffer::GetHeader; in GetAddress() [all …]
|
H A D | AudioTypeMux.cc | 65 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() 163 inbuf = (AudioBuffer*) multibuf; in Convert() 169 outbuf = new AudioBuffer(length, in Convert() 180 multibuf = (AudioBuffer**) inbuf; in Convert() [all …]
|
H A D | AudioTypeSampleRate.cc | 75 AudioBuffer*& inbuf, // data buffer to process in Convert() 78 AudioBuffer* outbuf; in Convert() 125 outbuf = new AudioBuffer(length, "(SampleRate conversion buffer)"); in Convert() 167 AudioBuffer*& outbuf) in Flush()
|
H A D | AudioTypeChannel.cc | 66 AudioBuffer*& inbuf, // data buffer to process in Convert() 69 AudioBuffer* outbuf; in Convert() 117 outbuf = new AudioBuffer(length, "(Channel conversion buffer)"); in Convert() 206 AudioBuffer*& /* buf */) in Flush() argument
|
H A D | AudioTypeG72X.cc | 95 AudioBuffer*& inbuf, // data buffer to process in Convert() 98 AudioBuffer* outbuf; in Convert() 137 outbuf = new AudioBuffer(length + pad, "(G72x conversion buffer)"); in Convert() 241 AudioBuffer*& outbuf) in Flush()
|
H A D | AudioGain.cc | 176 AudioBuffer* inbuf, in Process() 235 AudioBuffer* inbuf) in process_dcfilter() 288 AudioBuffer* inbuf) in process_instant() 337 AudioBuffer* inbuf) in process_weighted()
|
H A D | AudioTypePcm.cc | 209 AudioBuffer*& inbuf, // data buffer to process in Convert() 212 AudioBuffer* outbuf; in Convert() 244 outbuf = new AudioBuffer(length, "(PCM conversion buffer)"); in Convert() 496 AudioBuffer*& /* buf */) in Flush() argument
|
H A D | Audio.cc | 334 AudioBuffer* tob; in AsyncCopy() 349 tob = (AudioBuffer*) to; in AsyncCopy()
|
H A D | Makefile | 52 AudioBuffer.o \
|
/illumos-gate/usr/src/cmd/audio/include/ |
H A D | AudioGain.h | 70 AudioBuffer*); 73 AudioBuffer*); 76 AudioBuffer*); 88 AudioBuffer*, int); // buffer destroyed if not referenced!
|
H A D | AudioBuffer.h | 40 class AudioBuffer : public AudioStream { 54 AudioBuffer( 57 ~AudioBuffer(); // Destructor
|
H A D | AudioTypeChannel.h | 58 AudioBuffer*& inbuf, // data buffer to process 61 virtual AudioError Flush(AudioBuffer*& buf);
|
H A D | AudioTypeMux.h | 56 AudioBuffer*& inbuf, // data buffer to process 59 virtual AudioError Flush(AudioBuffer*& buf);
|
H A D | AudioTypeConvert.h | 59 AudioBuffer*& inbuf, // data buffer to process 62 virtual AudioError Flush(AudioBuffer*& buf) = 0; // flush any remaining
|
H A D | AudioTypeG72X.h | 61 AudioBuffer*& inbuf, // data buffer to process 64 virtual AudioError Flush(AudioBuffer*& buf);
|
H A D | AudioTypeSampleRate.h | 60 AudioBuffer*& inbuf, // data buffer to process 63 virtual AudioError Flush(AudioBuffer*& buf); // flush remains
|
H A D | AudioTypePcm.h | 112 AudioBuffer*& inbuf, // data buffer to process 115 virtual AudioError Flush(AudioBuffer*& buf);
|
/illumos-gate/usr/src/cmd/audio/audioconvert/ |
H A D | convert.h | 48 extern AudioBuffer* create_buffer(Audio*); 56 extern AudioError write_output(AudioBuffer*, AudioStream*);
|
H A D | convert.cc | 674 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 D | file.cc | 55 write_output(AudioBuffer* buf, AudioStream* ofp) in write_output()
|