示例#1
0
 /**
  * Modifies this caps inplace into a representation that represents the same set of formats, but
  * in a simpler form. Component structures that are identical are merged. Component structures
  * that have values that can be merged are also merged.
  *
  * @return The new {@link Caps}
  */
 public Caps simplify() {
   this.ref(); // gst_caps_simplify copies "this" and drops one reference
   return GSTCAPS_API.gst_caps_simplify(this);
 }