Exemplo n.º 1
0
 public boolean reconfigureElement(Element element) {
   return gst.gst_device_reconfigure_element(this, element);
 }
Exemplo n.º 2
0
 public Structure getProperties() {
   return gst.gst_device_get_properties(this);
 }
Exemplo n.º 3
0
 public boolean hasClasses(String[] classes) {
   return gst.gst_device_has_classesv(this, classes);
 }
Exemplo n.º 4
0
 public String getDisplayName() {
   return gst.gst_device_get_display_name(this);
 }
Exemplo n.º 5
0
 public String getDeviceClass() {
   return gst.gst_device_get_device_class(this);
 }
Exemplo n.º 6
0
 public Caps getCaps() {
   return gst.gst_device_get_caps(this);
 }
Exemplo n.º 7
0
 public Element createElement(String name) {
   return gst.gst_device_create_element(this, name);
 }