foobar2000 SDK  2015-01-14
playback_stream_capture.h
Go to the documentation of this file.
3 public:
7  virtual void on_chunk(const audio_chunk &) = 0;
8 protected:
11 };
12 
14 class NOVTABLE playback_stream_capture : public service_base {
15 public:
17  virtual void add_callback(playback_stream_capture_callback * ) = 0;
19  virtual void remove_callback(playback_stream_capture_callback * ) = 0;
20 
21 
22  FB2K_MAKE_SERVICE_INTERFACE_ENTRYPOINT(playback_stream_capture)
23 };
Interface to container of a chunk of audio data. See audio_chunk_impl for an implementation.
Definition: audio_chunk.h:5
Base class for all service classes. Provides interfaces for reference counter and querying for differ...
Definition: service.h:333