A simple base class for audio sinks. More...
Public Member Functions | |
virtual | ~AudioSink () |
GstAudioSink* | gobj () |
Provides access to the underlying C GObject. | |
const GstAudioSink* | gobj () const |
Provides access to the underlying C GObject. | |
GstAudioSink* | gobj_copy () |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. | |
virtual bool | prepare_vfunc (Gst::RingBufferSpec& spec) |
vfunc to open the device. | |
virtual guint | write_vfunc (const void* data, guint length) |
vfunc to undo operations done in prepare. | |
virtual guint | get_delay_vfunc () const |
vfunc to return how many samples are still in the device. | |
virtual void | reset_vfunc () |
vfunc to return as quickly as possible from a write and flush any pending samples from the device. | |
Related Functions | |
(Note that these are not member functions.) | |
Glib::RefPtr< Gst::AudioSink > | wrap (GstAudioSink* object, bool take_copy=false) |
A Glib::wrap() method for this object. |
A simple base class for audio sinks.
This is the most simple base class for audio sinks that only requires subclasses to implement a set of simple virtual functions:
All scheduling of samples and timestamps is done in this base class together with Gst::BaseAudioSink using a default implementation of a Gst::RingBuffer that uses threads.
Last reviewed on 2006-09-27 (0.10.12)
virtual Gst::AudioSink::~AudioSink | ( | ) | [virtual] |
virtual guint Gst::AudioSink::get_delay_vfunc | ( | ) | const [virtual] |
vfunc to return how many samples are still in the device.
This is used to drive the synchronisation.
const GstAudioSink* Gst::AudioSink::gobj | ( | ) | const [inline] |
Provides access to the underlying C GObject.
Reimplemented from Gst::BaseAudioSink.
Reimplemented in Gst::AlsaSink.
GstAudioSink* Gst::AudioSink::gobj | ( | ) | [inline] |
Provides access to the underlying C GObject.
Reimplemented from Gst::BaseAudioSink.
Reimplemented in Gst::AlsaSink.
GstAudioSink* Gst::AudioSink::gobj_copy | ( | ) |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
Reimplemented from Gst::BaseAudioSink.
Reimplemented in Gst::AlsaSink.
virtual bool Gst::AudioSink::prepare_vfunc | ( | Gst::RingBufferSpec& | spec ) | [virtual] |
vfunc to open the device.
No configuration needs to be done at this point. This function is also used to check if the device is available. vfunc to prepare the device to operate with the specified parameters.
virtual void Gst::AudioSink::reset_vfunc | ( | ) | [virtual] |
vfunc to return as quickly as possible from a write and flush any pending samples from the device.
virtual guint Gst::AudioSink::write_vfunc | ( | const void * | data, |
guint | length | ||
) | [virtual] |
vfunc to undo operations done in prepare.
vfunc to close the device. vfunc to write data to the device.
Glib::RefPtr< Gst::AudioSink > wrap | ( | GstAudioSink * | object, |
bool | take_copy = false |
||
) | [related] |
A Glib::wrap() method for this object.
object | The C instance. |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |