Home | History | Annotate | Download | only in audio

Lines Matching full:stream

41 // Models an audio stream that gets rendered to the audio hardware output.
44 // An audio stream allocates several buffers for audio data and calls
47 // by |samples_per_packet| specified in AudioParameters when the stream is
74 virtual void OnError(AudioOutputStream* stream) = 0;
82 // Open the stream. false is returned if the stream cannot be opened. Open()
90 // The output stream does not take ownership of this callback.
103 // Close the stream. This also generates AudioSourceCallback::OnClose().
116 virtual void OnData(AudioInputStream* stream, const uint8* src,
120 // The stream is done with this callback, the last call received by this
122 virtual void OnClose(AudioInputStream* stream) = 0;
128 virtual void OnError(AudioInputStream* stream) = 0;
136 // Open the stream and prepares it for recording. Call Start() to actually
141 // The input stream does not take ownership of this callback.
149 // Close the stream. This also generates AudioInputCallback::OnClose(). This