20
20
*/
21
21
package org .freedesktop .gstreamer ;
22
22
23
- import com .sun .jna .Pointer ;
24
23
24
+ import org .freedesktop .gstreamer .glib .Natives ;
25
25
import static org .freedesktop .gstreamer .lowlevel .GstCapsAPI .GSTCAPS_API ;
26
26
27
27
/**
@@ -72,7 +72,7 @@ public class Caps extends MiniObject {
72
72
* @see #emptyCaps
73
73
*/
74
74
public Caps () {
75
- this (initializer (GSTCAPS_API .ptr_gst_caps_new_empty ()));
75
+ this (Natives . initializer (GSTCAPS_API .ptr_gst_caps_new_empty ()));
76
76
}
77
77
78
78
/**
@@ -82,7 +82,7 @@ public Caps() {
82
82
* @see #fromString
83
83
*/
84
84
public Caps (String caps ) {
85
- this (initializer (GSTCAPS_API .ptr_gst_caps_from_string (caps )));
85
+ this (Natives . initializer (GSTCAPS_API .ptr_gst_caps_from_string (caps )));
86
86
}
87
87
88
88
/**
@@ -92,7 +92,7 @@ public Caps(String caps) {
92
92
* @see #copy
93
93
*/
94
94
public Caps (Caps caps ) {
95
- this (initializer (GSTCAPS_API .ptr_gst_caps_copy (caps )));
95
+ this (Natives . initializer (GSTCAPS_API .ptr_gst_caps_copy (caps )));
96
96
}
97
97
98
98
Caps (Initializer init ) {
@@ -282,7 +282,8 @@ public Caps makeWritable() {
282
282
* @see Structure
283
283
*/
284
284
public Caps normalize () {
285
- this .ref (); // gst_caps_normalize copies "this" and drops one reference
285
+ // this.ref(); // gst_caps_normalize copies "this" and drops one reference
286
+ Natives .ref (this );
286
287
return GSTCAPS_API .gst_caps_normalize (this );
287
288
}
288
289
@@ -309,7 +310,8 @@ public void setInteger(String field, Integer value) {
309
310
* @return The new {@link Caps}
310
311
*/
311
312
public Caps simplify () {
312
- this .ref (); // gst_caps_simplify copies "this" and drops one reference
313
+ // this.ref(); // gst_caps_simplify copies "this" and drops one reference
314
+ Natives .ref (this );
313
315
return GSTCAPS_API .gst_caps_simplify (this );
314
316
}
315
317
@@ -348,7 +350,8 @@ public String toString() {
348
350
* @return truncated copy of the Caps
349
351
*/
350
352
public Caps truncate () {
351
- this .ref ();
353
+ // this.ref();
354
+ Natives .ref (this );
352
355
return GSTCAPS_API .gst_caps_truncate (this );
353
356
}
354
357
@@ -359,7 +362,7 @@ public Caps truncate() {
359
362
* @return The new Caps.
360
363
*/
361
364
public static Caps anyCaps () {
362
- return new Caps (initializer (GSTCAPS_API .ptr_gst_caps_new_any ()));
365
+ return new Caps (Natives . initializer (GSTCAPS_API .ptr_gst_caps_new_any ()));
363
366
}
364
367
365
368
/**
@@ -369,7 +372,7 @@ public static Caps anyCaps() {
369
372
* @return The new Caps.
370
373
*/
371
374
public static Caps emptyCaps () {
372
- return new Caps (initializer (GSTCAPS_API .ptr_gst_caps_new_empty ()));
375
+ return new Caps (Natives . initializer (GSTCAPS_API .ptr_gst_caps_new_empty ()));
373
376
}
374
377
375
378
/**
@@ -383,7 +386,7 @@ public static Caps emptyCaps() {
383
386
* @return The new Caps.
384
387
*/
385
388
public static Caps fromString (String caps ) {
386
- return new Caps (initializer (GSTCAPS_API .ptr_gst_caps_from_string (caps )));
389
+ return new Caps (Natives . initializer (GSTCAPS_API .ptr_gst_caps_from_string (caps )));
387
390
}
388
391
389
392
/**
@@ -403,7 +406,4 @@ public static Caps merge(Caps caps1, Caps caps2) {
403
406
return GSTCAPS_API .gst_caps_merge (caps1 , caps2 );
404
407
}
405
408
406
- protected static Initializer initializer (Pointer ptr ) {
407
- return new Initializer (ptr , false , true );
408
- }
409
409
}
0 commit comments