[Bug 767483] Maximum number of clients reached, memory accumulation

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Fri Jun 17 11:29:49 UTC 2016


https://bugzilla.gnome.org/show_bug.cgi?id=767483

--- Comment #13 from Joona Laine <joonarlaine at gmail.com> ---
It might take a while for me to make that testcase, since I just realized that
linking rtspsrc and rtph264depay is not that straight forward as linking other
elements.

That got me thinking about my current QtGStreamer onPadAdded callback. It looks
like the following:

void Player::onPadAdded(const QGst::PadPtr &pad)
{
    Q_UNUSED(pad);
    if (_depay) {
        _source->link(_depay, "sink");
    } else if (_demux) {
        _demux->link(_capsfilter, "sink");
    }
}

I've got a feeling that's not quite what it's supposed to be...

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list