# QtGStreamer vs C GStreamer QtGStreamer is designed to mirror the C GStreamer API as closely as possible. There are, of course, minor differences. They are documented here. ## Common Functions
C GStreamer | QtGStreamer |
---|---|
gst_element_factory_make() |
QGst::ElementFactory::make(const QString &factoryName, const char *elementName=NULL) |
gst_parse_bin_from_description() |
QGst::Bin::fromDescription(const QString &description, BinFromDescriptionOption ghostUnlinkedPads=Ghost) |
gst_caps_from_string() |
|
g_signal_connect() |
QGlib::connect(GObject* instance, const char *detailedSignal, T *receiver, R(T::*)(Args...) slot, ConnectFlags flags) |