示例#1
0
 /**
  * Checks if the given caps represent the same set of caps.
  *
  * <p>This function does not work reliably if optional properties for caps are included on one
  * caps and omitted on the other.
  *
  * @param other The caps to compare this caps to.
  * @return true if other caps equals this one.
  */
 public boolean isEqual(Caps other) {
   return GSTCAPS_API.gst_caps_is_equal(this, other);
 }