Package org.gstreamer.lowlevel.GObjectAPI

Examples of org.gstreamer.lowlevel.GObjectAPI.GInstanceInitFunc


            public void callback(Pointer g_class) {
                gst.gst_element_class_add_pad_template(g_class, template);                   
            }
        };
        final boolean[] instanceInitCalled  = { false };
        final GInstanceInitFunc instanceInit = new GInstanceInitFunc() {

            public void callback(GTypeInstance instance, Pointer g_class) {
                instanceInitCalled[0] = true;               
            }
        };
View Full Code Here

TOP

Related Classes of org.gstreamer.lowlevel.GObjectAPI.GInstanceInitFunc

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.