Package org.gstreamer.query

Examples of org.gstreamer.query.ApplicationQuery


        assertTrue("toString() did not return minLatency", s.contains("max=" + maxLatency));
    }
    @Test public void applicationQuery() {
        QueryType type = GstQueryAPI.GSTQUERY_API.gst_query_type_register("application_test", "An application query");
        Structure s = new Structure("test");
        ApplicationQuery query = new ApplicationQuery(type, s);
        s = query.getStructure();
        query.dispose();
    }
View Full Code Here

TOP

Related Classes of org.gstreamer.query.ApplicationQuery

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.