Examples of GValue


Examples of org.gstreamer.lowlevel.GValueAPI.GValue

      
       ElementFactory factory = GstElementFactoryAPI.GSTELEMENTFACTORY_API.gst_element_factory_find("videotestsrc");
       p = GstElementFactoryAPI.GSTELEMENTFACTORY_API.ptr_gst_element_factory_create(factory, "videotestsrc");
   }
           
      GValue v = new GValue();
      api.g_value_init(v, GType.OBJECT);
     
      GValueTestAPI.API.g_value_set_object(v.getPointer(), p);
     
      Object obj = v.getValue();

      assertTrue("type mismatch", obj instanceof Element);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.