We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
You can continue the conversation there. Go to discussion →
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public class RTPSession extends GstObject { protected RTPSession(Initializer init) { super(init); } protected RTPSession(Handle handle, boolean needRef) { super(handle, needRef); } } RTPSession session = this.rtpbin.emit(RTPSession.class, "get-internal-session", 1); session.connect(name, RTCP_LISTENER.class, listener, new GstAPI.GstCallback() { @SuppressWarnings("unused") public void callback(Element element, Buffer buffer, boolean early, GPointer data) { listener.handle(element, buffer, early, data); } }); for session still return null how to register class & how to get RTPSession instance
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: