gstreamermm  1.10.0
basics/bin.cc

A gstreamermm Gst::Bin example.

/*
* This example presents basic usage of the Gst::Bin class.
*/
#include <gstreamermm.h>
#include <iostream>
int main(int argc, char *argv[])
{
Gst::init(argc, argv);
// Create some elements
// Create empty bin
// Add elements to a bin
try
{
bin->add(fakesrc)->add(fakesink);
}
catch (const std::runtime_error& ex)
{
std::cerr << "Exception while adding: " << ex.what() << std::endl;
return 1;
}
// Some of the elements are actually a bins, so we can cast
// them.
Glib::RefPtr<Gst::Bin> playbin_bin = playbin_bin.cast_static(playbin);
if (!playbin_bin)
{
std::cerr << "Cannot find playbin element" << std::endl;
return 1;
}
// We can also iterate through the elements in the bin
Gst::Iterator<Gst::Element> it = playbin_bin->iterate_recurse();
std::cout << "List of elements in the container: " << std::endl;
while (it.next())
{
std::cout << " * " << it->get_name() << std::endl;
}
// We can also connect to signals emitted by bin, e.g. when
// the element has been removed.
bin->signal_element_removed().connect(
[] (const Glib::RefPtr<Gst::Element>& removed_element)
{
std::cout << "Element '" << removed_element->get_name()
<< "' has been removed from the bin" << std::endl;
}
);
bin->remove(fakesink);
std::cout << "returning from application..." << std::endl;
return 0;
}
iostream
std::cout
ostream cout
std::cerr
ostream cerr
Glib::RefPtr::cast_static
static RefPtr cast_static(const RefPtr< T_CastFrom > &src) noexcept
Gst::ElementFactory::create_element
static Glib::RefPtr< Gst::Element > create_element(const Glib::ustring &factory_name, const Glib::ustring &name)
Create a new element of the type defined by the given element factory.
Glib::RefPtr
Gst::Bin::create
static Glib::RefPtr< Bin > create()
Creates a new bin with a unique generic name.
Gst::init
void init(int &argc, char **&argv)
Initializes gstreamermm parsing command line arguments.
Gst::Object::get_name
Glib::ustring get_name() const
Returns a copy of the name of object.
Gst::Iterator
A class used to retrieve multiple reference counted elements in a thread safe way.
Definition: bin.h:51
std::endl
basic_ostream< _CharT, _Traits > & endl(basic_ostream< _CharT, _Traits > &__os)
std::runtime_error::what
virtual const char * what() const _GLIBCXX_TXN_SAFE_DYN noexcept
Gst::Iterator::next
IteratorResult next()
Moves to the next iterator item.
std::runtime_error