/titanic_41/usr/src/cmd/audio/utilities/ |
H A D | AudioBuffer.cc | 38 AudioBuffer:: 39 AudioBuffer( in AudioBuffer() function in AudioBuffer 47 AudioBuffer:: 48 ~AudioBuffer() in ~AudioBuffer() 56 Boolean AudioBuffer:: 66 AudioError AudioBuffer:: 182 void* AudioBuffer:: 190 void* AudioBuffer:: 196 AudioHdr(AudioBuffer::*hfunc)()const; in GetAddress() 208 hfunc = (AudioHdr(AudioBuffer::*)() const)&AudioBuffer::GetHeader; in GetAddress() [all …]
|
H A D | AudioTypeMux.cc | 67 AudioBuffer*& inbuf, // data buffer to process in Convert() 70 AudioBuffer* outbuf; in Convert() 71 AudioBuffer** multibuf; in Convert() 91 multibuf = (AudioBuffer**) inbuf; // Mux multiple buffers in Convert() 122 multibuf = (AudioBuffer**) in Convert() 123 calloc((channels + 1), sizeof (AudioBuffer*)); in Convert() 125 multibuf[i] = new AudioBuffer(length, in Convert() 164 inbuf = (AudioBuffer*) multibuf; in Convert() 170 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() 123 outbuf = new AudioBuffer(length, "(SampleRate conversion buffer)"); in Convert() 162 AudioBuffer*& outbuf) in Flush()
|
H A D | AudioTypeChannel.cc | 68 AudioBuffer*& inbuf, // data buffer to process in Convert() 71 AudioBuffer* outbuf; in Convert() 119 outbuf = new AudioBuffer(length, "(Channel conversion buffer)"); in Convert() 207 AudioBuffer*& /* buf */) in Flush() argument
|
H A D | AudioTypeG72X.cc | 97 AudioBuffer*& inbuf, // data buffer to process in Convert() 100 AudioBuffer* outbuf; in Convert() 139 outbuf = new AudioBuffer(length + pad, "(G72x conversion buffer)"); in Convert() 242 AudioBuffer*& outbuf) in Flush()
|
H A D | AudioGain.cc | 178 AudioBuffer* inbuf, in Process() 237 AudioBuffer* inbuf) in process_dcfilter() 290 AudioBuffer* inbuf) in process_instant() 339 AudioBuffer* inbuf) in process_weighted()
|
H A D | AudioTypePcm.cc | 211 AudioBuffer*& inbuf, // data buffer to process in Convert() 214 AudioBuffer* outbuf; in Convert() 246 outbuf = new AudioBuffer(length, "(PCM conversion buffer)"); in Convert() 497 AudioBuffer*& /* buf */) in Flush() argument
|
H A D | Audio.cc | 336 AudioBuffer* tob; in AsyncCopy() 350 tob = (AudioBuffer*) to; in AsyncCopy()
|
H A D | Makefile | 56 AudioBuffer.cc \
|
/titanic_41/usr/src/cmd/audio/include/ |
H A D | AudioGain.h | 72 AudioBuffer*); 75 AudioBuffer*); 78 AudioBuffer*); 90 AudioBuffer*, int); // buffer destroyed if not referenced!
|
H A D | AudioBuffer.h | 42 class AudioBuffer : public AudioStream { 56 AudioBuffer( 59 ~AudioBuffer(); // Destructor
|
H A D | AudioTypeMux.h | 58 AudioBuffer*& inbuf, // data buffer to process 61 virtual AudioError Flush(AudioBuffer*& buf);
|
H A D | AudioTypeChannel.h | 60 AudioBuffer*& inbuf, // data buffer to process 63 virtual AudioError Flush(AudioBuffer*& buf);
|
H A D | AudioTypeConvert.h | 61 AudioBuffer*& inbuf, // data buffer to process 64 virtual AudioError Flush(AudioBuffer*& buf) = 0; // flush any remaining
|
H A D | AudioTypeG72X.h | 63 AudioBuffer*& inbuf, // data buffer to process 66 virtual AudioError Flush(AudioBuffer*& buf);
|
H A D | AudioTypeSampleRate.h | 62 AudioBuffer*& inbuf, // data buffer to process 65 virtual AudioError Flush(AudioBuffer*& buf); // flush remains
|
H A D | AudioTypePcm.h | 114 AudioBuffer*& inbuf, // data buffer to process 117 virtual AudioError Flush(AudioBuffer*& buf);
|
/titanic_41/usr/src/cmd/audio/audioconvert/ |
H A D | convert.h | 50 extern AudioBuffer* create_buffer(Audio*); 58 extern AudioError write_output(AudioBuffer*, AudioStream*);
|
H A D | convert.cc | 676 AudioBuffer* obuf; in do_convert() 677 AudioBuffer** multibuf; in do_convert() 737 if (!(obuf = new AudioBuffer(cvtlen, MGET("Audio Convert Buffer")))) { in do_convert() 767 multibuf = (AudioBuffer**)obuf; in do_convert() 804 multibuf = (AudioBuffer**)obuf; in do_convert()
|
H A D | file.cc | 57 write_output(AudioBuffer* buf, AudioStream* ofp) in write_output()
|