1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
// DO NOT EDIT

#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
#![allow(
    clippy::approx_constant,
    clippy::type_complexity,
    clippy::unreadable_literal,
    clippy::upper_case_acronyms
)]
#![cfg_attr(docsrs, feature(doc_cfg))]

use gio_sys as gio;
use glib_sys as glib;
use gobject_sys as gobject;
use gstreamer_pbutils_sys as gst_pbutils;
use gstreamer_sys as gst;

#[allow(unused_imports)]
use libc::{
    c_char, c_double, c_float, c_int, c_long, c_short, c_uchar, c_uint, c_ulong, c_ushort, c_void,
    intptr_t, size_t, ssize_t, uintptr_t, FILE,
};

#[allow(unused_imports)]
use glib::{gboolean, gconstpointer, gpointer, GType};

// Aliases
pub type GESFrameNumber = i64;

// Enums
pub type GESAssetLoadingReturn = c_int;
pub const GES_ASSET_LOADING_ERROR: GESAssetLoadingReturn = 0;
pub const GES_ASSET_LOADING_ASYNC: GESAssetLoadingReturn = 1;
pub const GES_ASSET_LOADING_OK: GESAssetLoadingReturn = 2;

pub type GESChildrenControlMode = c_int;
pub const GES_CHILDREN_UPDATE: GESChildrenControlMode = 0;
pub const GES_CHILDREN_IGNORE_NOTIFIES: GESChildrenControlMode = 1;
pub const GES_CHILDREN_UPDATE_OFFSETS: GESChildrenControlMode = 2;
pub const GES_CHILDREN_UPDATE_ALL_VALUES: GESChildrenControlMode = 3;
pub const GES_CHILDREN_LAST: GESChildrenControlMode = 4;

pub type GESEdge = c_int;
pub const GES_EDGE_START: GESEdge = 0;
pub const GES_EDGE_END: GESEdge = 1;
pub const GES_EDGE_NONE: GESEdge = 2;

pub type GESEditMode = c_int;
pub const GES_EDIT_MODE_NORMAL: GESEditMode = 0;
pub const GES_EDIT_MODE_RIPPLE: GESEditMode = 1;
pub const GES_EDIT_MODE_ROLL: GESEditMode = 2;
pub const GES_EDIT_MODE_TRIM: GESEditMode = 3;
pub const GES_EDIT_MODE_SLIDE: GESEditMode = 4;

pub type GESError = c_int;
pub const GES_ERROR_ASSET_WRONG_ID: GESError = 0;
pub const GES_ERROR_ASSET_LOADING: GESError = 1;
pub const GES_ERROR_FORMATTER_MALFORMED_INPUT_FILE: GESError = 2;
pub const GES_ERROR_INVALID_FRAME_NUMBER: GESError = 3;
pub const GES_ERROR_NEGATIVE_LAYER: GESError = 4;
pub const GES_ERROR_NEGATIVE_TIME: GESError = 5;
pub const GES_ERROR_NOT_ENOUGH_INTERNAL_CONTENT: GESError = 6;
pub const GES_ERROR_INVALID_OVERLAP_IN_TRACK: GESError = 7;
pub const GES_ERROR_INVALID_EFFECT_BIN_DESCRIPTION: GESError = 8;

pub type GESTextHAlign = c_int;
pub const GES_TEXT_HALIGN_LEFT: GESTextHAlign = 0;
pub const GES_TEXT_HALIGN_CENTER: GESTextHAlign = 1;
pub const GES_TEXT_HALIGN_RIGHT: GESTextHAlign = 2;
pub const GES_TEXT_HALIGN_POSITION: GESTextHAlign = 4;
pub const GES_TEXT_HALIGN_ABSOLUTE: GESTextHAlign = 5;

pub type GESTextVAlign = c_int;
pub const GES_TEXT_VALIGN_BASELINE: GESTextVAlign = 0;
pub const GES_TEXT_VALIGN_BOTTOM: GESTextVAlign = 1;
pub const GES_TEXT_VALIGN_TOP: GESTextVAlign = 2;
pub const GES_TEXT_VALIGN_POSITION: GESTextVAlign = 3;
pub const GES_TEXT_VALIGN_CENTER: GESTextVAlign = 4;
pub const GES_TEXT_VALIGN_ABSOLUTE: GESTextVAlign = 5;

pub type GESVideoStandardTransitionType = c_int;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_NONE: GESVideoStandardTransitionType = 0;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BAR_WIPE_LR: GESVideoStandardTransitionType = 1;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BAR_WIPE_TB: GESVideoStandardTransitionType = 2;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BOX_WIPE_TL: GESVideoStandardTransitionType = 3;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BOX_WIPE_TR: GESVideoStandardTransitionType = 4;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BOX_WIPE_BR: GESVideoStandardTransitionType = 5;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BOX_WIPE_BL: GESVideoStandardTransitionType = 6;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_FOUR_BOX_WIPE_CI: GESVideoStandardTransitionType = 7;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_FOUR_BOX_WIPE_CO: GESVideoStandardTransitionType = 8;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BARNDOOR_V: GESVideoStandardTransitionType = 21;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BARNDOOR_H: GESVideoStandardTransitionType = 22;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BOX_WIPE_TC: GESVideoStandardTransitionType = 23;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BOX_WIPE_RC: GESVideoStandardTransitionType = 24;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BOX_WIPE_BC: GESVideoStandardTransitionType = 25;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BOX_WIPE_LC: GESVideoStandardTransitionType = 26;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DIAGONAL_TL: GESVideoStandardTransitionType = 41;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DIAGONAL_TR: GESVideoStandardTransitionType = 42;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BOWTIE_V: GESVideoStandardTransitionType = 43;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BOWTIE_H: GESVideoStandardTransitionType = 44;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BARNDOOR_DBL: GESVideoStandardTransitionType = 45;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BARNDOOR_DTL: GESVideoStandardTransitionType = 46;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_MISC_DIAGONAL_DBD: GESVideoStandardTransitionType = 47;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_MISC_DIAGONAL_DD: GESVideoStandardTransitionType = 48;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_VEE_D: GESVideoStandardTransitionType = 61;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_VEE_L: GESVideoStandardTransitionType = 62;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_VEE_U: GESVideoStandardTransitionType = 63;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_VEE_R: GESVideoStandardTransitionType = 64;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BARNVEE_D: GESVideoStandardTransitionType = 65;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BARNVEE_L: GESVideoStandardTransitionType = 66;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BARNVEE_U: GESVideoStandardTransitionType = 67;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_BARNVEE_R: GESVideoStandardTransitionType = 68;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_IRIS_RECT: GESVideoStandardTransitionType = 101;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_CLOCK_CW12: GESVideoStandardTransitionType = 201;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_CLOCK_CW3: GESVideoStandardTransitionType = 202;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_CLOCK_CW6: GESVideoStandardTransitionType = 203;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_CLOCK_CW9: GESVideoStandardTransitionType = 204;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_PINWHEEL_TBV: GESVideoStandardTransitionType = 205;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_PINWHEEL_TBH: GESVideoStandardTransitionType = 206;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_PINWHEEL_FB: GESVideoStandardTransitionType = 207;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_FAN_CT: GESVideoStandardTransitionType = 211;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_FAN_CR: GESVideoStandardTransitionType = 212;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DOUBLEFAN_FOV: GESVideoStandardTransitionType = 213;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DOUBLEFAN_FOH: GESVideoStandardTransitionType = 214;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SINGLESWEEP_CWT: GESVideoStandardTransitionType = 221;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SINGLESWEEP_CWR: GESVideoStandardTransitionType = 222;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SINGLESWEEP_CWB: GESVideoStandardTransitionType = 223;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SINGLESWEEP_CWL: GESVideoStandardTransitionType = 224;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DOUBLESWEEP_PV: GESVideoStandardTransitionType = 225;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DOUBLESWEEP_PD: GESVideoStandardTransitionType = 226;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DOUBLESWEEP_OV: GESVideoStandardTransitionType = 227;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DOUBLESWEEP_OH: GESVideoStandardTransitionType = 228;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_FAN_T: GESVideoStandardTransitionType = 231;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_FAN_R: GESVideoStandardTransitionType = 232;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_FAN_B: GESVideoStandardTransitionType = 233;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_FAN_L: GESVideoStandardTransitionType = 234;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DOUBLEFAN_FIV: GESVideoStandardTransitionType = 235;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DOUBLEFAN_FIH: GESVideoStandardTransitionType = 236;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SINGLESWEEP_CWTL: GESVideoStandardTransitionType = 241;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SINGLESWEEP_CWBL: GESVideoStandardTransitionType = 242;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SINGLESWEEP_CWBR: GESVideoStandardTransitionType = 243;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SINGLESWEEP_CWTR: GESVideoStandardTransitionType = 244;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DOUBLESWEEP_PDTL: GESVideoStandardTransitionType = 245;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_DOUBLESWEEP_PDBL: GESVideoStandardTransitionType = 246;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SALOONDOOR_T: GESVideoStandardTransitionType = 251;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SALOONDOOR_L: GESVideoStandardTransitionType = 252;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SALOONDOOR_B: GESVideoStandardTransitionType = 253;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_SALOONDOOR_R: GESVideoStandardTransitionType = 254;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_WINDSHIELD_R: GESVideoStandardTransitionType = 261;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_WINDSHIELD_U: GESVideoStandardTransitionType = 262;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_WINDSHIELD_V: GESVideoStandardTransitionType = 263;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_WINDSHIELD_H: GESVideoStandardTransitionType = 264;
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_CROSSFADE: GESVideoStandardTransitionType = 512;
#[cfg(feature = "v1_22")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_22")))]
pub const GES_VIDEO_STANDARD_TRANSITION_TYPE_FADE_IN: GESVideoStandardTransitionType = 513;

pub type GESVideoTestPattern = c_int;
pub const GES_VIDEO_TEST_PATTERN_SMPTE: GESVideoTestPattern = 0;
pub const GES_VIDEO_TEST_PATTERN_SNOW: GESVideoTestPattern = 1;
pub const GES_VIDEO_TEST_PATTERN_BLACK: GESVideoTestPattern = 2;
pub const GES_VIDEO_TEST_PATTERN_WHITE: GESVideoTestPattern = 3;
pub const GES_VIDEO_TEST_PATTERN_RED: GESVideoTestPattern = 4;
pub const GES_VIDEO_TEST_PATTERN_GREEN: GESVideoTestPattern = 5;
pub const GES_VIDEO_TEST_PATTERN_BLUE: GESVideoTestPattern = 6;
pub const GES_VIDEO_TEST_PATTERN_CHECKERS1: GESVideoTestPattern = 7;
pub const GES_VIDEO_TEST_PATTERN_CHECKERS2: GESVideoTestPattern = 8;
pub const GES_VIDEO_TEST_PATTERN_CHECKERS4: GESVideoTestPattern = 9;
pub const GES_VIDEO_TEST_PATTERN_CHECKERS8: GESVideoTestPattern = 10;
pub const GES_VIDEO_TEST_PATTERN_CIRCULAR: GESVideoTestPattern = 11;
pub const GES_VIDEO_TEST_PATTERN_BLINK: GESVideoTestPattern = 12;
pub const GES_VIDEO_TEST_PATTERN_SMPTE75: GESVideoTestPattern = 13;
pub const GES_VIDEO_TEST_ZONE_PLATE: GESVideoTestPattern = 14;
pub const GES_VIDEO_TEST_GAMUT: GESVideoTestPattern = 15;
pub const GES_VIDEO_TEST_CHROMA_ZONE_PLATE: GESVideoTestPattern = 16;
pub const GES_VIDEO_TEST_PATTERN_SOLID: GESVideoTestPattern = 17;

// Constants
pub const GES_FRAME_NUMBER_NONE: i64 = 9223372036854775807;
pub const GES_META_DESCRIPTION: &[u8] = b"description\0";
pub const GES_META_FORMATTER_EXTENSION: &[u8] = b"extension\0";
pub const GES_META_FORMATTER_MIMETYPE: &[u8] = b"mimetype\0";
pub const GES_META_FORMATTER_NAME: &[u8] = b"name\0";
pub const GES_META_FORMATTER_RANK: &[u8] = b"rank\0";
pub const GES_META_FORMATTER_VERSION: &[u8] = b"version\0";
pub const GES_META_FORMAT_VERSION: &[u8] = b"format-version\0";
pub const GES_META_MARKER_COLOR: &[u8] = b"marker-color\0";
pub const GES_META_VOLUME: &[u8] = b"volume\0";
pub const GES_META_VOLUME_DEFAULT: c_double = 1.000000;
pub const GES_MULTI_FILE_URI_PREFIX: &[u8] = b"multifile://\0";
pub const GES_PADDING: c_int = 4;
pub const GES_PADDING_LARGE: c_int = 20;
pub const GES_TIMELINE_ELEMENT_NO_LAYER_PRIORITY: u32 = 4294967295;

// Flags
pub type GESMarkerFlags = c_uint;
pub const GES_MARKER_FLAG_NONE: GESMarkerFlags = 0;
pub const GES_MARKER_FLAG_SNAPPABLE: GESMarkerFlags = 1;

pub type GESMetaFlag = c_uint;
pub const GES_META_READABLE: GESMetaFlag = 1;
pub const GES_META_WRITABLE: GESMetaFlag = 2;
pub const GES_META_READ_WRITE: GESMetaFlag = 3;

pub type GESPipelineFlags = c_uint;
pub const GES_PIPELINE_MODE_PREVIEW_AUDIO: GESPipelineFlags = 1;
pub const GES_PIPELINE_MODE_PREVIEW_VIDEO: GESPipelineFlags = 2;
pub const GES_PIPELINE_MODE_PREVIEW: GESPipelineFlags = 3;
pub const GES_PIPELINE_MODE_RENDER: GESPipelineFlags = 4;
pub const GES_PIPELINE_MODE_SMART_RENDER: GESPipelineFlags = 8;

pub type GESTrackType = c_uint;
pub const GES_TRACK_TYPE_UNKNOWN: GESTrackType = 1;
pub const GES_TRACK_TYPE_AUDIO: GESTrackType = 2;
pub const GES_TRACK_TYPE_VIDEO: GESTrackType = 4;
pub const GES_TRACK_TYPE_TEXT: GESTrackType = 8;
pub const GES_TRACK_TYPE_CUSTOM: GESTrackType = 16;

// Unions
#[derive(Copy, Clone)]
#[repr(C)]
pub union GESClipClass_ABI {
    pub _ges_reserved: [gpointer; 20],
    pub abi: GESClipClass_ABI_abi,
}

impl ::std::fmt::Debug for GESClipClass_ABI {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESClipClass_ABI @ {self:p}"))
            .field("_ges_reserved", unsafe { &self._ges_reserved })
            .field("abi", unsafe { &self.abi })
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub union GESTrackElementClass_ABI {
    pub _ges_reserved: [gpointer; 20],
    pub abi: GESTrackElementClass_ABI_abi,
}

impl ::std::fmt::Debug for GESTrackElementClass_ABI {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTrackElementClass_ABI @ {self:p}"))
            .field("_ges_reserved", unsafe { &self._ges_reserved })
            .field("abi", unsafe { &self.abi })
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub union GESVideoSourceClass_ABI {
    pub _ges_reserved: [gpointer; 4],
    pub abi: GESVideoSourceClass_ABI_abi,
}

impl ::std::fmt::Debug for GESVideoSourceClass_ABI {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoSourceClass_ABI @ {self:p}"))
            .field("_ges_reserved", unsafe { &self._ges_reserved })
            .field("abi", unsafe { &self.abi })
            .finish()
    }
}

// Callbacks
pub type GESBaseEffectTimeTranslationFunc = Option<
    unsafe extern "C" fn(
        *mut GESBaseEffect,
        gst::GstClockTime,
        *mut glib::GHashTable,
        gpointer,
    ) -> gst::GstClockTime,
>;
pub type GESCreateElementForGapFunc =
    Option<unsafe extern "C" fn(*mut GESTrack) -> *mut gst::GstElement>;
pub type GESCreateTrackElementFunc =
    Option<unsafe extern "C" fn(*mut GESClip, GESTrackType) -> *mut GESTrackElement>;
pub type GESCreateTrackElementsFunc =
    Option<unsafe extern "C" fn(*mut GESClip, GESTrackType) -> *mut glib::GList>;
pub type GESExtractableCheckId =
    Option<unsafe extern "C" fn(GType, *const c_char, *mut *mut glib::GError) -> *mut c_char>;
pub type GESFillTrackElementFunc = Option<
    unsafe extern "C" fn(*mut GESClip, *mut GESTrackElement, *mut gst::GstElement) -> gboolean,
>;
pub type GESFormatterCanLoadURIMethod = Option<
    unsafe extern "C" fn(*mut GESFormatter, *const c_char, *mut *mut glib::GError) -> gboolean,
>;
pub type GESFormatterLoadFromURIMethod = Option<
    unsafe extern "C" fn(
        *mut GESFormatter,
        *mut GESTimeline,
        *const c_char,
        *mut *mut glib::GError,
    ) -> gboolean,
>;
pub type GESFormatterSaveToURIMethod = Option<
    unsafe extern "C" fn(
        *mut GESFormatter,
        *mut GESTimeline,
        *const c_char,
        gboolean,
        *mut *mut glib::GError,
    ) -> gboolean,
>;
pub type GESMetaForeachFunc = Option<
    unsafe extern "C" fn(*const GESMetaContainer, *const c_char, *const gobject::GValue, gpointer),
>;

// Records
#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAssetClass {
    pub parent: gobject::GObjectClass,
    pub start_loading: Option<
        unsafe extern "C" fn(*mut GESAsset, *mut *mut glib::GError) -> GESAssetLoadingReturn,
    >,
    pub extract:
        Option<unsafe extern "C" fn(*mut GESAsset, *mut *mut glib::GError) -> *mut GESExtractable>,
    pub inform_proxy: Option<unsafe extern "C" fn(*mut GESAsset, *const c_char)>,
    pub proxied: Option<unsafe extern "C" fn(*mut GESAsset, *mut GESAsset)>,
    pub request_id_update: Option<
        unsafe extern "C" fn(*mut GESAsset, *mut *mut c_char, *mut glib::GError) -> gboolean,
    >,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAssetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAssetClass @ {self:p}"))
            .field("parent", &self.parent)
            .field("start_loading", &self.start_loading)
            .field("extract", &self.extract)
            .field("inform_proxy", &self.inform_proxy)
            .field("proxied", &self.proxied)
            .field("request_id_update", &self.request_id_update)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESAssetPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESAssetPrivate = _GESAssetPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAudioSourceClass {
    pub parent_class: GESSourceClass,
    pub create_source: Option<unsafe extern "C" fn(*mut GESTrackElement) -> *mut gst::GstElement>,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAudioSourceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAudioSourceClass @ {self:p}"))
            .field("create_source", &self.create_source)
            .finish()
    }
}

#[repr(C)]
pub struct _GESAudioSourcePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESAudioSourcePrivate = _GESAudioSourcePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAudioTestSourceClass {
    pub parent_class: GESAudioSourceClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAudioTestSourceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAudioTestSourceClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESAudioTestSourcePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESAudioTestSourcePrivate = _GESAudioTestSourcePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAudioTrackClass {
    pub parent_class: GESTrackClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAudioTrackClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAudioTrackClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESAudioTrackPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESAudioTrackPrivate = _GESAudioTrackPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAudioTransitionClass {
    pub parent_class: GESTransitionClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAudioTransitionClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAudioTransitionClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESAudioTransitionPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESAudioTransitionPrivate = _GESAudioTransitionPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAudioUriSourceClass {
    pub parent_class: GESAudioSourceClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAudioUriSourceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAudioUriSourceClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESAudioUriSourcePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESAudioUriSourcePrivate = _GESAudioUriSourcePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESBaseEffectClass {
    pub parent_class: GESOperationClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESBaseEffectClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESBaseEffectClass @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESBaseEffectClipClass {
    pub parent_class: GESOperationClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESBaseEffectClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESBaseEffectClipClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESBaseEffectClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESBaseEffectClipPrivate = _GESBaseEffectClipPrivate;

#[repr(C)]
pub struct _GESBaseEffectPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESBaseEffectPrivate = _GESBaseEffectPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESBaseTransitionClipClass {
    pub parent_class: GESOperationClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESBaseTransitionClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESBaseTransitionClipClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESBaseTransitionClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESBaseTransitionClipPrivate = _GESBaseTransitionClipPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESBaseXmlFormatterClass {
    pub parent: GESFormatterClass,
    pub content_parser: glib::GMarkupParser,
    pub save: Option<
        unsafe extern "C" fn(
            *mut GESFormatter,
            *mut GESTimeline,
            *mut *mut glib::GError,
        ) -> *mut glib::GString,
    >,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESBaseXmlFormatterClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESBaseXmlFormatterClass @ {self:p}"))
            .field("parent", &self.parent)
            .field("content_parser", &self.content_parser)
            .field("save", &self.save)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESBaseXmlFormatterPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESBaseXmlFormatterPrivate = _GESBaseXmlFormatterPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESClipAssetClass {
    pub parent: GESAssetClass,
    pub get_natural_framerate:
        Option<unsafe extern "C" fn(*mut GESClipAsset, *mut c_int, *mut c_int) -> gboolean>,
    pub _ges_reserved: [gpointer; 3],
}

impl ::std::fmt::Debug for GESClipAssetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESClipAssetClass @ {self:p}"))
            .field("parent", &self.parent)
            .field("get_natural_framerate", &self.get_natural_framerate)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESClipAssetPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESClipAssetPrivate = _GESClipAssetPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESClipClass {
    pub parent_class: GESContainerClass,
    pub create_track_element: GESCreateTrackElementFunc,
    pub create_track_elements: GESCreateTrackElementsFunc,
    pub ABI: GESClipClass_ABI,
}

impl ::std::fmt::Debug for GESClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESClipClass @ {self:p}"))
            .field("create_track_element", &self.create_track_element)
            .field("create_track_elements", &self.create_track_elements)
            .field("ABI", &self.ABI)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESClipClass_ABI_abi {
    pub can_add_effects: gboolean,
}

impl ::std::fmt::Debug for GESClipClass_ABI_abi {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESClipClass_ABI_abi @ {self:p}"))
            .field("can_add_effects", &self.can_add_effects)
            .finish()
    }
}

#[repr(C)]
pub struct _GESClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESClipPrivate = _GESClipPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESCommandLineFormatterClass {
    pub parent_class: GESFormatterClass,
}

impl ::std::fmt::Debug for GESCommandLineFormatterClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESCommandLineFormatterClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[repr(C)]
pub struct _GESCommandLineFormatterPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESCommandLineFormatterPrivate = _GESCommandLineFormatterPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESContainerClass {
    pub parent_class: GESTimelineElementClass,
    pub child_added: Option<unsafe extern "C" fn(*mut GESContainer, *mut GESTimelineElement)>,
    pub child_removed: Option<unsafe extern "C" fn(*mut GESContainer, *mut GESTimelineElement)>,
    pub add_child:
        Option<unsafe extern "C" fn(*mut GESContainer, *mut GESTimelineElement) -> gboolean>,
    pub remove_child:
        Option<unsafe extern "C" fn(*mut GESContainer, *mut GESTimelineElement) -> gboolean>,
    pub ungroup: Option<unsafe extern "C" fn(*mut GESContainer, gboolean) -> *mut glib::GList>,
    pub group: Option<unsafe extern "C" fn(*mut glib::GList) -> *mut GESContainer>,
    pub edit: Option<
        unsafe extern "C" fn(
            *mut GESContainer,
            *mut glib::GList,
            c_int,
            GESEditMode,
            GESEdge,
            u64,
        ) -> gboolean,
    >,
    pub grouping_priority: c_uint,
    pub _ges_reserved: [gpointer; 20],
}

impl ::std::fmt::Debug for GESContainerClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESContainerClass @ {self:p}"))
            .field("child_added", &self.child_added)
            .field("child_removed", &self.child_removed)
            .field("add_child", &self.add_child)
            .field("remove_child", &self.remove_child)
            .field("ungroup", &self.ungroup)
            .field("group", &self.group)
            .field("edit", &self.edit)
            .finish()
    }
}

#[repr(C)]
pub struct _GESContainerPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESContainerPrivate = _GESContainerPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESDiscovererManagerClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for GESDiscovererManagerClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESDiscovererManagerClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[repr(C)]
pub struct _GESDiscovererManagerPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESDiscovererManagerPrivate = _GESDiscovererManagerPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESEffectAssetClass {
    pub parent_class: GESTrackElementAssetClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESEffectAssetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESEffectAssetClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESEffectAssetPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESEffectAssetPrivate = _GESEffectAssetPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESEffectClass {
    pub parent_class: GESBaseEffectClass,
    pub rate_properties: *mut glib::GList,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESEffectClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESEffectClass @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESEffectClipClass {
    pub parent_class: GESBaseEffectClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESEffectClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESEffectClipClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESEffectClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESEffectClipPrivate = _GESEffectClipPrivate;

#[repr(C)]
pub struct _GESEffectPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESEffectPrivate = _GESEffectPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESExtractableInterface {
    pub parent: gobject::GTypeInterface,
    pub asset_type: GType,
    pub check_id: GESExtractableCheckId,
    pub can_update_asset: gboolean,
    pub set_asset: Option<unsafe extern "C" fn(*mut GESExtractable, *mut GESAsset)>,
    pub set_asset_full:
        Option<unsafe extern "C" fn(*mut GESExtractable, *mut GESAsset) -> gboolean>,
    pub get_parameters_from_id:
        Option<unsafe extern "C" fn(*const c_char, *mut c_uint) -> *mut gobject::GParameter>,
    pub get_id: Option<unsafe extern "C" fn(*mut GESExtractable) -> *mut c_char>,
    pub get_real_extractable_type: Option<unsafe extern "C" fn(GType, *const c_char) -> GType>,
    pub register_metas: Option<
        unsafe extern "C" fn(
            *mut GESExtractableInterface,
            *mut gobject::GObjectClass,
            *mut GESAsset,
        ) -> gboolean,
    >,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESExtractableInterface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESExtractableInterface @ {self:p}"))
            .field("parent", &self.parent)
            .field("asset_type", &self.asset_type)
            .field("check_id", &self.check_id)
            .field("can_update_asset", &self.can_update_asset)
            .field("set_asset", &self.set_asset)
            .field("set_asset_full", &self.set_asset_full)
            .field("get_parameters_from_id", &self.get_parameters_from_id)
            .field("get_id", &self.get_id)
            .field("get_real_extractable_type", &self.get_real_extractable_type)
            .field("register_metas", &self.register_metas)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESFormatterClass {
    pub parent_class: gobject::GInitiallyUnownedClass,
    pub can_load_uri: GESFormatterCanLoadURIMethod,
    pub load_from_uri: GESFormatterLoadFromURIMethod,
    pub save_to_uri: GESFormatterSaveToURIMethod,
    pub name: *mut c_char,
    pub description: *mut c_char,
    pub extension: *mut c_char,
    pub mimetype: *mut c_char,
    pub version: c_double,
    pub rank: gst::GstRank,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESFormatterClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESFormatterClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("can_load_uri", &self.can_load_uri)
            .field("load_from_uri", &self.load_from_uri)
            .field("save_to_uri", &self.save_to_uri)
            .finish()
    }
}

#[repr(C)]
pub struct _GESFormatterPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESFormatterPrivate = _GESFormatterPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESFrameCompositionMeta {
    pub meta: gst::GstMeta,
    pub alpha: c_double,
    pub posx: c_int,
    pub posy: c_int,
    pub height: c_int,
    pub width: c_int,
    pub zorder: c_uint,
    pub operator: c_int,
}

impl ::std::fmt::Debug for GESFrameCompositionMeta {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESFrameCompositionMeta @ {self:p}"))
            .field("meta", &self.meta)
            .field("alpha", &self.alpha)
            .field("posx", &self.posx)
            .field("posy", &self.posy)
            .field("height", &self.height)
            .field("width", &self.width)
            .field("zorder", &self.zorder)
            .field("operator", &self.operator)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESGroupClass {
    pub parent_class: GESContainerClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESGroupClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESGroupClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESGroupPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESGroupPrivate = _GESGroupPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESImageSourceClass {
    pub parent_class: GESVideoSourceClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESImageSourceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESImageSourceClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESImageSourcePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESImageSourcePrivate = _GESImageSourcePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESLayerClass {
    pub parent_class: gobject::GInitiallyUnownedClass,
    pub get_objects: Option<unsafe extern "C" fn(*mut GESLayer) -> *mut glib::GList>,
    pub object_added: Option<unsafe extern "C" fn(*mut GESLayer, *mut GESClip)>,
    pub object_removed: Option<unsafe extern "C" fn(*mut GESLayer, *mut GESClip)>,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESLayerClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESLayerClass @ {self:p}"))
            .field("get_objects", &self.get_objects)
            .field("object_added", &self.object_added)
            .field("object_removed", &self.object_removed)
            .finish()
    }
}

#[repr(C)]
pub struct _GESLayerPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESLayerPrivate = _GESLayerPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESMarkerClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for GESMarkerClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESMarkerClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESMarkerListClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for GESMarkerListClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESMarkerListClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESMetaContainerInterface {
    pub parent_iface: gobject::GTypeInterface,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESMetaContainerInterface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESMetaContainerInterface @ {self:p}"))
            .field("parent_iface", &self.parent_iface)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESMultiFileSourceClass {
    pub parent_class: GESVideoSourceClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESMultiFileSourceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESMultiFileSourceClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESMultiFileSourcePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESMultiFileSourcePrivate = _GESMultiFileSourcePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESOperationClass {
    pub parent_class: GESTrackElementClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESOperationClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESOperationClass @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESOperationClipClass {
    pub parent_class: GESClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESOperationClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESOperationClipClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESOperationClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESOperationClipPrivate = _GESOperationClipPrivate;

#[repr(C)]
pub struct _GESOperationPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESOperationPrivate = _GESOperationPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESOverlayClipClass {
    pub parent_class: GESOperationClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESOverlayClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESOverlayClipClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[repr(C)]
pub struct _GESOverlayClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESOverlayClipPrivate = _GESOverlayClipPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESPipelineClass {
    pub parent_class: gst::GstPipelineClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESPipelineClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESPipelineClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESPipelinePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESPipelinePrivate = _GESPipelinePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESPitiviFormatterClass {
    pub parent_class: GESFormatterClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESPitiviFormatterClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESPitiviFormatterClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESPitiviFormatterPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESPitiviFormatterPrivate = _GESPitiviFormatterPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESProjectClass {
    pub parent_class: GESAssetClass,
    pub asset_added: Option<unsafe extern "C" fn(*mut GESProject, *mut GESAsset)>,
    pub asset_loading: Option<unsafe extern "C" fn(*mut GESProject, *mut GESAsset)>,
    pub asset_removed: Option<unsafe extern "C" fn(*mut GESProject, *mut GESAsset)>,
    pub missing_uri: Option<
        unsafe extern "C" fn(*mut GESProject, *mut glib::GError, *mut GESAsset) -> *mut c_char,
    >,
    pub loading_error: Option<
        unsafe extern "C" fn(*mut GESProject, *mut glib::GError, *mut c_char, GType) -> gboolean,
    >,
    pub loaded: Option<unsafe extern "C" fn(*mut GESProject, *mut GESTimeline) -> gboolean>,
    pub loading: Option<unsafe extern "C" fn(*mut GESProject, *mut GESTimeline)>,
    pub _ges_reserved: [gpointer; 3],
}

impl ::std::fmt::Debug for GESProjectClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESProjectClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("asset_added", &self.asset_added)
            .field("asset_loading", &self.asset_loading)
            .field("asset_removed", &self.asset_removed)
            .field("missing_uri", &self.missing_uri)
            .field("loading_error", &self.loading_error)
            .field("loaded", &self.loaded)
            .field("loading", &self.loading)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESProjectPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESProjectPrivate = _GESProjectPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESSourceClass {
    pub parent_class: GESTrackElementClass,
    pub select_pad: Option<unsafe extern "C" fn(*mut GESSource, *mut gst::GstPad) -> gboolean>,
    pub create_source: Option<unsafe extern "C" fn(*mut GESSource) -> *mut gst::GstElement>,
    pub _ges_reserved: [gpointer; 2],
}

impl ::std::fmt::Debug for GESSourceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESSourceClass @ {self:p}"))
            .field("select_pad", &self.select_pad)
            .field("create_source", &self.create_source)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESSourceClipAssetClass {
    pub parent_class: GESClipAssetClass,
}

impl ::std::fmt::Debug for GESSourceClipAssetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESSourceClipAssetClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESSourceClipClass {
    pub parent_class: GESClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESSourceClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESSourceClipClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESSourceClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESSourceClipPrivate = _GESSourceClipPrivate;

#[repr(C)]
pub struct _GESSourcePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESSourcePrivate = _GESSourcePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTestClipClass {
    pub parent_class: GESSourceClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTestClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTestClipClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESTestClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTestClipPrivate = _GESTestClipPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTextOverlayClass {
    pub parent_class: GESOperationClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTextOverlayClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTextOverlayClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTextOverlayClipClass {
    pub parent_class: GESOverlayClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTextOverlayClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTextOverlayClipClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESTextOverlayClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTextOverlayClipPrivate = _GESTextOverlayClipPrivate;

#[repr(C)]
pub struct _GESTextOverlayPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTextOverlayPrivate = _GESTextOverlayPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTimelineClass {
    pub parent_class: gst::GstBinClass,
    pub track_added: Option<unsafe extern "C" fn(*mut GESTimeline, *mut GESTrack)>,
    pub track_removed: Option<unsafe extern "C" fn(*mut GESTimeline, *mut GESTrack)>,
    pub layer_added: Option<unsafe extern "C" fn(*mut GESTimeline, *mut GESLayer)>,
    pub layer_removed: Option<unsafe extern "C" fn(*mut GESTimeline, *mut GESLayer)>,
    pub group_added: Option<unsafe extern "C" fn(*mut GESTimeline, *mut GESGroup)>,
    pub group_removed:
        Option<unsafe extern "C" fn(*mut GESTimeline, *mut GESGroup, *mut glib::GPtrArray)>,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTimelineClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTimelineClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("track_added", &self.track_added)
            .field("track_removed", &self.track_removed)
            .field("layer_added", &self.layer_added)
            .field("layer_removed", &self.layer_removed)
            .field("group_added", &self.group_added)
            .field("group_removed", &self.group_removed)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTimelineElementClass {
    pub parent_class: gobject::GInitiallyUnownedClass,
    pub set_parent:
        Option<unsafe extern "C" fn(*mut GESTimelineElement, *mut GESTimelineElement) -> gboolean>,
    pub set_start:
        Option<unsafe extern "C" fn(*mut GESTimelineElement, gst::GstClockTime) -> gboolean>,
    pub set_inpoint:
        Option<unsafe extern "C" fn(*mut GESTimelineElement, gst::GstClockTime) -> gboolean>,
    pub set_duration:
        Option<unsafe extern "C" fn(*mut GESTimelineElement, gst::GstClockTime) -> gboolean>,
    pub set_max_duration:
        Option<unsafe extern "C" fn(*mut GESTimelineElement, gst::GstClockTime) -> gboolean>,
    pub set_priority: Option<unsafe extern "C" fn(*mut GESTimelineElement, u32) -> gboolean>,
    pub ripple: Option<unsafe extern "C" fn(*mut GESTimelineElement, u64) -> gboolean>,
    pub ripple_end: Option<unsafe extern "C" fn(*mut GESTimelineElement, u64) -> gboolean>,
    pub roll_start: Option<unsafe extern "C" fn(*mut GESTimelineElement, u64) -> gboolean>,
    pub roll_end: Option<unsafe extern "C" fn(*mut GESTimelineElement, u64) -> gboolean>,
    pub trim: Option<unsafe extern "C" fn(*mut GESTimelineElement, u64) -> gboolean>,
    pub deep_copy: Option<unsafe extern "C" fn(*mut GESTimelineElement, *mut GESTimelineElement)>,
    pub paste: Option<
        unsafe extern "C" fn(
            *mut GESTimelineElement,
            *mut GESTimelineElement,
            gst::GstClockTime,
        ) -> *mut GESTimelineElement,
    >,
    pub list_children_properties: Option<
        unsafe extern "C" fn(*mut GESTimelineElement, *mut c_uint) -> *mut *mut gobject::GParamSpec,
    >,
    pub lookup_child: Option<
        unsafe extern "C" fn(
            *mut GESTimelineElement,
            *const c_char,
            *mut *mut gobject::GObject,
            *mut *mut gobject::GParamSpec,
        ) -> gboolean,
    >,
    pub get_track_types: Option<unsafe extern "C" fn(*mut GESTimelineElement) -> GESTrackType>,
    pub set_child_property: Option<
        unsafe extern "C" fn(
            *mut GESTimelineElement,
            *mut gobject::GObject,
            *mut gobject::GParamSpec,
            *mut gobject::GValue,
        ),
    >,
    pub get_layer_priority: Option<unsafe extern "C" fn(*mut GESTimelineElement) -> u32>,
    pub get_natural_framerate:
        Option<unsafe extern "C" fn(*mut GESTimelineElement, *mut c_int, *mut c_int) -> gboolean>,
    pub set_child_property_full: Option<
        unsafe extern "C" fn(
            *mut GESTimelineElement,
            *mut gobject::GObject,
            *mut gobject::GParamSpec,
            *const gobject::GValue,
            *mut *mut glib::GError,
        ) -> gboolean,
    >,
    pub _ges_reserved: [gpointer; 14],
}

impl ::std::fmt::Debug for GESTimelineElementClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTimelineElementClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("set_parent", &self.set_parent)
            .field("set_start", &self.set_start)
            .field("set_inpoint", &self.set_inpoint)
            .field("set_duration", &self.set_duration)
            .field("set_max_duration", &self.set_max_duration)
            .field("set_priority", &self.set_priority)
            .field("ripple", &self.ripple)
            .field("ripple_end", &self.ripple_end)
            .field("roll_start", &self.roll_start)
            .field("roll_end", &self.roll_end)
            .field("trim", &self.trim)
            .field("deep_copy", &self.deep_copy)
            .field("paste", &self.paste)
            .field("list_children_properties", &self.list_children_properties)
            .field("lookup_child", &self.lookup_child)
            .field("get_track_types", &self.get_track_types)
            .field("set_child_property", &self.set_child_property)
            .field("get_layer_priority", &self.get_layer_priority)
            .field("get_natural_framerate", &self.get_natural_framerate)
            .field("set_child_property_full", &self.set_child_property_full)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESTimelineElementPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTimelineElementPrivate = _GESTimelineElementPrivate;

#[repr(C)]
pub struct _GESTimelinePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTimelinePrivate = _GESTimelinePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTitleClipClass {
    pub parent_class: GESSourceClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTitleClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTitleClipClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESTitleClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTitleClipPrivate = _GESTitleClipPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTitleSourceClass {
    pub parent_class: GESVideoSourceClass,
    pub _ges_reserved: [gpointer; 3],
}

impl ::std::fmt::Debug for GESTitleSourceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTitleSourceClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[repr(C)]
pub struct _GESTitleSourcePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTitleSourcePrivate = _GESTitleSourcePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTrackClass {
    pub parent_class: gst::GstBinClass,
    pub get_mixing_element: Option<unsafe extern "C" fn(*mut GESTrack) -> *mut gst::GstElement>,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTrackClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTrackClass @ {self:p}"))
            .field("get_mixing_element", &self.get_mixing_element)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTrackElementAssetClass {
    pub parent_class: GESAssetClass,
    pub get_natural_framerate:
        Option<unsafe extern "C" fn(*mut GESTrackElementAsset, *mut c_int, *mut c_int) -> gboolean>,
    pub _ges_reserved: [gpointer; 3],
}

impl ::std::fmt::Debug for GESTrackElementAssetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTrackElementAssetClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("get_natural_framerate", &self.get_natural_framerate)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESTrackElementAssetPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTrackElementAssetPrivate = _GESTrackElementAssetPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTrackElementClass {
    pub parent_class: GESTimelineElementClass,
    pub nleobject_factorytype: *const c_char,
    pub create_gnl_object:
        Option<unsafe extern "C" fn(*mut GESTrackElement) -> *mut gst::GstElement>,
    pub create_element: Option<unsafe extern "C" fn(*mut GESTrackElement) -> *mut gst::GstElement>,
    pub active_changed: Option<unsafe extern "C" fn(*mut GESTrackElement, gboolean)>,
    pub changed: Option<unsafe extern "C" fn(*mut GESTrackElement)>,
    pub list_children_properties: Option<
        unsafe extern "C" fn(*mut GESTrackElement, *mut c_uint) -> *mut *mut gobject::GParamSpec,
    >,
    pub lookup_child: Option<
        unsafe extern "C" fn(
            *mut GESTrackElement,
            *const c_char,
            *mut *mut gst::GstElement,
            *mut *mut gobject::GParamSpec,
        ) -> gboolean,
    >,
    pub ABI: GESTrackElementClass_ABI,
}

impl ::std::fmt::Debug for GESTrackElementClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTrackElementClass @ {self:p}"))
            .field("nleobject_factorytype", &self.nleobject_factorytype)
            .field("create_gnl_object", &self.create_gnl_object)
            .field("create_element", &self.create_element)
            .field("active_changed", &self.active_changed)
            .field("changed", &self.changed)
            .field("list_children_properties", &self.list_children_properties)
            .field("lookup_child", &self.lookup_child)
            .field("ABI", &self.ABI)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTrackElementClass_ABI_abi {
    pub default_has_internal_source: gboolean,
    pub default_track_type: GESTrackType,
}

impl ::std::fmt::Debug for GESTrackElementClass_ABI_abi {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTrackElementClass_ABI_abi @ {self:p}"))
            .field(
                "default_has_internal_source",
                &self.default_has_internal_source,
            )
            .field("default_track_type", &self.default_track_type)
            .finish()
    }
}

#[repr(C)]
pub struct _GESTrackElementPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTrackElementPrivate = _GESTrackElementPrivate;

#[repr(C)]
pub struct _GESTrackPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTrackPrivate = _GESTrackPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTransitionClass {
    pub parent_class: GESOperationClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTransitionClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTransitionClass @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTransitionClipClass {
    pub parent_class: GESBaseTransitionClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTransitionClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTransitionClipClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESTransitionClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTransitionClipPrivate = _GESTransitionClipPrivate;

#[repr(C)]
pub struct _GESTransitionPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESTransitionPrivate = _GESTransitionPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESUriClipAssetClass {
    pub parent_class: GESSourceClipAssetClass,
    pub discoverer: *mut gst_pbutils::GstDiscoverer,
    pub sync_discoverer: *mut gst_pbutils::GstDiscoverer,
    pub discovered: Option<
        unsafe extern "C" fn(
            *mut gst_pbutils::GstDiscoverer,
            *mut gst_pbutils::GstDiscovererInfo,
            *mut glib::GError,
            gpointer,
        ),
    >,
    pub _ges_reserved: [gpointer; 3],
}

impl ::std::fmt::Debug for GESUriClipAssetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESUriClipAssetClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("discovered", &self.discovered)
            .finish()
    }
}

#[repr(C)]
pub struct _GESUriClipAssetPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESUriClipAssetPrivate = _GESUriClipAssetPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESUriClipClass {
    pub parent_class: GESSourceClipClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESUriClipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESUriClipClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESUriClipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESUriClipPrivate = _GESUriClipPrivate;

#[repr(C)]
pub struct _GESUriSource {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESUriSource = _GESUriSource;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESUriSourceAssetClass {
    pub parent_class: GESTrackElementAssetClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESUriSourceAssetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESUriSourceAssetClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESUriSourceAssetPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESUriSourceAssetPrivate = _GESUriSourceAssetPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoSourceClass {
    pub parent_class: GESSourceClass,
    pub create_source: Option<unsafe extern "C" fn(*mut GESTrackElement) -> *mut gst::GstElement>,
    pub ABI: GESVideoSourceClass_ABI,
}

impl ::std::fmt::Debug for GESVideoSourceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoSourceClass @ {self:p}"))
            .field("create_source", &self.create_source)
            .field("ABI", &self.ABI)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoSourceClass_ABI_abi {
    pub disable_scale_in_compositor: gboolean,
    pub needs_converters: Option<unsafe extern "C" fn(*mut GESVideoSource) -> gboolean>,
    pub get_natural_size:
        Option<unsafe extern "C" fn(*mut GESVideoSource, *mut c_int, *mut c_int) -> gboolean>,
    pub create_filters: Option<
        unsafe extern "C" fn(*mut GESVideoSource, *mut glib::GPtrArray, gboolean) -> gboolean,
    >,
}

impl ::std::fmt::Debug for GESVideoSourceClass_ABI_abi {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoSourceClass_ABI_abi @ {self:p}"))
            .field(
                "disable_scale_in_compositor",
                &self.disable_scale_in_compositor,
            )
            .field("needs_converters", &self.needs_converters)
            .field("get_natural_size", &self.get_natural_size)
            .field("create_filters", &self.create_filters)
            .finish()
    }
}

#[repr(C)]
pub struct _GESVideoSourcePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESVideoSourcePrivate = _GESVideoSourcePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoTestSourceClass {
    pub parent_class: GESVideoSourceClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESVideoTestSourceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoTestSourceClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESVideoTestSourcePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESVideoTestSourcePrivate = _GESVideoTestSourcePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoTrackClass {
    pub parent_class: GESTrackClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESVideoTrackClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoTrackClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESVideoTrackPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESVideoTrackPrivate = _GESVideoTrackPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoTransitionClass {
    pub parent_class: GESTransitionClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESVideoTransitionClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoTransitionClass @ {self:p}"))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[repr(C)]
pub struct _GESVideoTransitionPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESVideoTransitionPrivate = _GESVideoTransitionPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoUriSourceClass {
    pub parent_class: GESVideoSourceClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESVideoUriSourceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoUriSourceClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
pub struct _GESVideoUriSourcePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESVideoUriSourcePrivate = _GESVideoUriSourcePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESXmlFormatterClass {
    pub parent: GESBaseXmlFormatterClass,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESXmlFormatterClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESXmlFormatterClass @ {self:p}"))
            .field("parent", &self.parent)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct _GESXmlFormatterPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type GESXmlFormatterPrivate = _GESXmlFormatterPrivate;

// Classes
#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAsset {
    pub parent: gobject::GObject,
    pub priv_: *mut GESAssetPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAsset {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAsset @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAudioSource {
    pub parent: GESSource,
    pub priv_: *mut GESAudioSourcePrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAudioSource {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAudioSource @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAudioTestSource {
    pub parent: GESAudioSource,
    pub priv_: *mut GESAudioTestSourcePrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAudioTestSource {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAudioTestSource @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAudioTrack {
    pub parent_instance: GESTrack,
    pub priv_: *mut GESAudioTrackPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAudioTrack {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAudioTrack @ {self:p}"))
            .field("parent_instance", &self.parent_instance)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAudioTransition {
    pub parent: GESTransition,
    pub priv_: *mut GESAudioTransitionPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAudioTransition {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAudioTransition @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESAudioUriSource {
    pub parent: GESAudioSource,
    pub uri: *mut c_char,
    pub priv_: *mut GESUriSource,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESAudioUriSource {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESAudioUriSource @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESBaseEffect {
    pub parent: GESOperation,
    pub priv_: *mut GESBaseEffectPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESBaseEffect {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESBaseEffect @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESBaseEffectClip {
    pub parent: GESOperationClip,
    pub priv_: *mut GESBaseEffectClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESBaseEffectClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESBaseEffectClip @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESBaseTransitionClip {
    pub parent: GESOperationClip,
    pub priv_: *mut GESBaseTransitionClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESBaseTransitionClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESBaseTransitionClip @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESBaseXmlFormatter {
    pub parent: GESFormatter,
    pub priv_: *mut GESBaseXmlFormatterPrivate,
    pub xmlcontent: *mut c_char,
    pub _ges_reserved: [gpointer; 3],
}

impl ::std::fmt::Debug for GESBaseXmlFormatter {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESBaseXmlFormatter @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESClip {
    pub parent: GESContainer,
    pub priv_: *mut GESClipPrivate,
    pub _ges_reserved: [gpointer; 20],
}

impl ::std::fmt::Debug for GESClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESClip @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESClipAsset {
    pub parent: GESAsset,
    pub priv_: *mut GESClipAssetPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESClipAsset {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESClipAsset @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESCommandLineFormatter {
    pub parent_instance: GESFormatter,
    pub priv_: *mut GESCommandLineFormatterPrivate,
}

impl ::std::fmt::Debug for GESCommandLineFormatter {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESCommandLineFormatter @ {self:p}"))
            .field("parent_instance", &self.parent_instance)
            .field("priv_", &self.priv_)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESContainer {
    pub parent: GESTimelineElement,
    pub children: *mut glib::GList,
    pub height: u32,
    pub children_control_mode: GESChildrenControlMode,
    pub initiated_move: *mut GESTimelineElement,
    pub priv_: *mut GESContainerPrivate,
    pub _ges_reserved: [gpointer; 20],
}

impl ::std::fmt::Debug for GESContainer {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESContainer @ {self:p}"))
            .field("parent", &self.parent)
            .field("children", &self.children)
            .field("height", &self.height)
            .field("children_control_mode", &self.children_control_mode)
            .field("initiated_move", &self.initiated_move)
            .finish()
    }
}

#[repr(C)]
pub struct GESDiscovererManager {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

impl ::std::fmt::Debug for GESDiscovererManager {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESDiscovererManager @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESEffect {
    pub parent: GESBaseEffect,
    pub priv_: *mut GESEffectPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESEffect {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESEffect @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESEffectAsset {
    pub parent_instance: GESTrackElementAsset,
    pub priv_: *mut GESEffectAssetPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESEffectAsset {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESEffectAsset @ {self:p}"))
            .field("parent_instance", &self.parent_instance)
            .field("priv_", &self.priv_)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESEffectClip {
    pub parent: GESBaseEffectClip,
    pub priv_: *mut GESEffectClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESEffectClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESEffectClip @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESFormatter {
    pub parent: gobject::GInitiallyUnowned,
    pub priv_: *mut GESFormatterPrivate,
    pub project: *mut GESProject,
    pub timeline: *mut GESTimeline,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESFormatter {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESFormatter @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESGroup {
    pub parent: GESContainer,
    pub priv_: *mut GESGroupPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESGroup {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESGroup @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESImageSource {
    pub parent: GESVideoSource,
    pub uri: *mut c_char,
    pub priv_: *mut GESImageSourcePrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESImageSource {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESImageSource @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESLayer {
    pub parent: gobject::GInitiallyUnowned,
    pub timeline: *mut GESTimeline,
    pub min_nle_priority: u32,
    pub max_nle_priority: u32,
    pub priv_: *mut GESLayerPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESLayer {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESLayer @ {self:p}"))
            .field("parent", &self.parent)
            .field("timeline", &self.timeline)
            .field("min_nle_priority", &self.min_nle_priority)
            .field("max_nle_priority", &self.max_nle_priority)
            .field("priv_", &self.priv_)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

#[repr(C)]
pub struct GESMarker {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

impl ::std::fmt::Debug for GESMarker {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESMarker @ {self:p}")).finish()
    }
}

#[repr(C)]
pub struct GESMarkerList {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

impl ::std::fmt::Debug for GESMarkerList {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESMarkerList @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESMultiFileSource {
    pub parent: GESVideoSource,
    pub uri: *mut c_char,
    pub priv_: *mut GESMultiFileSourcePrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESMultiFileSource {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESMultiFileSource @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESOperation {
    pub parent: GESTrackElement,
    pub priv_: *mut GESOperationPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESOperation {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESOperation @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESOperationClip {
    pub parent: GESClip,
    pub priv_: *mut GESOperationClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESOperationClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESOperationClip @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESOverlayClip {
    pub parent: GESOperationClip,
    pub priv_: *mut GESOverlayClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESOverlayClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESOverlayClip @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESPipeline {
    pub parent: gst::GstPipeline,
    pub priv_: *mut GESPipelinePrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESPipeline {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESPipeline @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESPitiviFormatter {
    pub parent: GESFormatter,
    pub priv_: *mut GESPitiviFormatterPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESPitiviFormatter {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESPitiviFormatter @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESProject {
    pub parent: GESAsset,
    pub priv_: *mut GESProjectPrivate,
    pub __ges_reserved: [gpointer; 20],
}

impl ::std::fmt::Debug for GESProject {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESProject @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESSource {
    pub parent: GESTrackElement,
    pub priv_: *mut GESSourcePrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESSource {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESSource @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESSourceClip {
    pub parent: GESClip,
    pub priv_: *mut GESSourceClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESSourceClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESSourceClip @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESSourceClipAsset {
    pub parent_instance: GESClipAsset,
}

impl ::std::fmt::Debug for GESSourceClipAsset {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESSourceClipAsset @ {self:p}"))
            .field("parent_instance", &self.parent_instance)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTestClip {
    pub parent: GESSourceClip,
    pub priv_: *mut GESTestClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTestClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTestClip @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTextOverlay {
    pub parent: GESOperation,
    pub priv_: *mut GESTextOverlayPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTextOverlay {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTextOverlay @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTextOverlayClip {
    pub parent: GESOverlayClip,
    pub priv_: *mut GESTextOverlayClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTextOverlayClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTextOverlayClip @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTimeline {
    pub parent: gst::GstBin,
    pub layers: *mut glib::GList,
    pub tracks: *mut glib::GList,
    pub priv_: *mut GESTimelinePrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTimeline {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTimeline @ {self:p}"))
            .field("parent", &self.parent)
            .field("layers", &self.layers)
            .field("tracks", &self.tracks)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTimelineElement {
    pub parent_instance: gobject::GInitiallyUnowned,
    pub parent: *mut GESTimelineElement,
    pub asset: *mut GESAsset,
    pub start: gst::GstClockTime,
    pub inpoint: gst::GstClockTime,
    pub duration: gst::GstClockTime,
    pub maxduration: gst::GstClockTime,
    pub priority: u32,
    pub timeline: *mut GESTimeline,
    pub name: *mut c_char,
    pub priv_: *mut GESTimelineElementPrivate,
    pub _ges_reserved: [gpointer; 20],
}

impl ::std::fmt::Debug for GESTimelineElement {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTimelineElement @ {self:p}"))
            .field("parent_instance", &self.parent_instance)
            .field("parent", &self.parent)
            .field("asset", &self.asset)
            .field("start", &self.start)
            .field("inpoint", &self.inpoint)
            .field("duration", &self.duration)
            .field("maxduration", &self.maxduration)
            .field("priority", &self.priority)
            .field("timeline", &self.timeline)
            .field("name", &self.name)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTitleClip {
    pub parent: GESSourceClip,
    pub priv_: *mut GESTitleClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTitleClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTitleClip @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTitleSource {
    pub parent: GESVideoSource,
    pub priv_: *mut GESTitleSourcePrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTitleSource {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTitleSource @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTrack {
    pub parent: gst::GstBin,
    pub type_: GESTrackType,
    pub priv_: *mut GESTrackPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTrack {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTrack @ {self:p}"))
            .field("parent", &self.parent)
            .field("type_", &self.type_)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTrackElement {
    pub parent: GESTimelineElement,
    pub active: gboolean,
    pub priv_: *mut GESTrackElementPrivate,
    pub asset: *mut GESAsset,
    pub _ges_reserved: [gpointer; 20],
}

impl ::std::fmt::Debug for GESTrackElement {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTrackElement @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTrackElementAsset {
    pub parent: GESAsset,
    pub priv_: *mut GESTrackElementAssetPrivate,
    pub __ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTrackElementAsset {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTrackElementAsset @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTransition {
    pub parent: GESOperation,
    pub priv_: *mut GESTransitionPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTransition {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTransition @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESTransitionClip {
    pub parent: GESBaseTransitionClip,
    pub vtype: GESVideoStandardTransitionType,
    pub priv_: *mut GESTransitionClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESTransitionClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESTransitionClip @ {self:p}"))
            .field("vtype", &self.vtype)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESUriClip {
    pub parent: GESSourceClip,
    pub priv_: *mut GESUriClipPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESUriClip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESUriClip @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESUriClipAsset {
    pub parent: GESSourceClipAsset,
    pub priv_: *mut GESUriClipAssetPrivate,
    pub __ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESUriClipAsset {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESUriClipAsset @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESUriSourceAsset {
    pub parent: GESTrackElementAsset,
    pub priv_: *mut GESUriSourceAssetPrivate,
    pub __ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESUriSourceAsset {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESUriSourceAsset @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoSource {
    pub parent: GESSource,
    pub priv_: *mut GESVideoSourcePrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESVideoSource {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoSource @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoTestSource {
    pub parent: GESVideoSource,
    pub priv_: *mut GESVideoTestSourcePrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESVideoTestSource {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoTestSource @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoTrack {
    pub parent_instance: GESTrack,
    pub priv_: *mut GESVideoTrackPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESVideoTrack {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoTrack @ {self:p}"))
            .field("parent_instance", &self.parent_instance)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoTransition {
    pub parent: GESTransition,
    pub priv_: *mut GESVideoTransitionPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESVideoTransition {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoTransition @ {self:p}"))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESVideoUriSource {
    pub parent: GESVideoSource,
    pub uri: *mut c_char,
    pub priv_: *mut GESUriSource,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESVideoUriSource {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESVideoUriSource @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct GESXmlFormatter {
    pub parent: GESBaseXmlFormatter,
    pub priv_: *mut GESXmlFormatterPrivate,
    pub _ges_reserved: [gpointer; 4],
}

impl ::std::fmt::Debug for GESXmlFormatter {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GESXmlFormatter @ {self:p}"))
            .field("parent", &self.parent)
            .field("priv_", &self.priv_)
            .field("_ges_reserved", &self._ges_reserved)
            .finish()
    }
}

// Interfaces
#[repr(C)]
pub struct GESExtractable {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

impl ::std::fmt::Debug for GESExtractable {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GESExtractable @ {self:p}")
    }
}

#[repr(C)]
pub struct GESMetaContainer {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

impl ::std::fmt::Debug for GESMetaContainer {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GESMetaContainer @ {self:p}")
    }
}

#[link(name = "ges-1.0")]
extern "C" {

    //=========================================================================
    // GESEdge
    //=========================================================================
    pub fn ges_edge_get_type() -> GType;
    #[cfg(feature = "v1_16")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
    pub fn ges_edge_name(edge: GESEdge) -> *const c_char;

    //=========================================================================
    // GESEditMode
    //=========================================================================
    pub fn ges_edit_mode_get_type() -> GType;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_edit_mode_name(mode: GESEditMode) -> *const c_char;

    //=========================================================================
    // GESTextHAlign
    //=========================================================================
    pub fn ges_text_halign_get_type() -> GType;

    //=========================================================================
    // GESTextVAlign
    //=========================================================================
    pub fn ges_text_valign_get_type() -> GType;

    //=========================================================================
    // GESVideoStandardTransitionType
    //=========================================================================
    pub fn ges_video_standard_transition_type_get_type() -> GType;

    //=========================================================================
    // GESVideoTestPattern
    //=========================================================================
    pub fn ges_video_test_pattern_get_type() -> GType;

    //=========================================================================
    // GESMarkerFlags
    //=========================================================================
    #[cfg(feature = "v1_20")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_20")))]
    pub fn ges_marker_flags_get_type() -> GType;

    //=========================================================================
    // GESMetaFlag
    //=========================================================================
    pub fn ges_meta_flag_get_type() -> GType;

    //=========================================================================
    // GESPipelineFlags
    //=========================================================================
    pub fn ges_pipeline_flags_get_type() -> GType;

    //=========================================================================
    // GESTrackType
    //=========================================================================
    pub fn ges_track_type_get_type() -> GType;
    pub fn ges_track_type_name(type_: GESTrackType) -> *const c_char;

    //=========================================================================
    // GESEffectClass
    //=========================================================================
    pub fn ges_effect_class_register_rate_property(
        klass: *mut GESEffectClass,
        element_name: *const c_char,
        property_name: *const c_char,
    ) -> gboolean;

    //=========================================================================
    // GESFormatterClass
    //=========================================================================
    pub fn ges_formatter_class_register_metas(
        klass: *mut GESFormatterClass,
        name: *const c_char,
        description: *const c_char,
        extensions: *const c_char,
        caps: *const c_char,
        version: c_double,
        rank: gst::GstRank,
    );

    //=========================================================================
    // GESUriClipAssetClass
    //=========================================================================
    pub fn ges_uri_clip_asset_class_set_timeout(
        klass: *mut GESUriClipAssetClass,
        timeout: gst::GstClockTime,
    );

    //=========================================================================
    // GESAsset
    //=========================================================================
    pub fn ges_asset_get_type() -> GType;
    pub fn ges_asset_needs_reload(extractable_type: GType, id: *const c_char) -> gboolean;
    pub fn ges_asset_request(
        extractable_type: GType,
        id: *const c_char,
        error: *mut *mut glib::GError,
    ) -> *mut GESAsset;
    pub fn ges_asset_request_async(
        extractable_type: GType,
        id: *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn ges_asset_request_finish(
        res: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut GESAsset;
    pub fn ges_asset_extract(
        self_: *mut GESAsset,
        error: *mut *mut glib::GError,
    ) -> *mut GESExtractable;
    pub fn ges_asset_get_error(self_: *mut GESAsset) -> *mut glib::GError;
    pub fn ges_asset_get_extractable_type(self_: *mut GESAsset) -> GType;
    pub fn ges_asset_get_id(self_: *mut GESAsset) -> *const c_char;
    pub fn ges_asset_get_proxy(asset: *mut GESAsset) -> *mut GESAsset;
    pub fn ges_asset_get_proxy_target(proxy: *mut GESAsset) -> *mut GESAsset;
    pub fn ges_asset_list_proxies(asset: *mut GESAsset) -> *mut glib::GList;
    pub fn ges_asset_set_proxy(asset: *mut GESAsset, proxy: *mut GESAsset) -> gboolean;
    pub fn ges_asset_unproxy(asset: *mut GESAsset, proxy: *mut GESAsset) -> gboolean;

    //=========================================================================
    // GESAudioSource
    //=========================================================================
    pub fn ges_audio_source_get_type() -> GType;

    //=========================================================================
    // GESAudioTestSource
    //=========================================================================
    pub fn ges_audio_test_source_get_type() -> GType;
    pub fn ges_audio_test_source_get_freq(self_: *mut GESAudioTestSource) -> c_double;
    pub fn ges_audio_test_source_get_volume(self_: *mut GESAudioTestSource) -> c_double;
    pub fn ges_audio_test_source_set_freq(self_: *mut GESAudioTestSource, freq: c_double);
    pub fn ges_audio_test_source_set_volume(self_: *mut GESAudioTestSource, volume: c_double);

    //=========================================================================
    // GESAudioTrack
    //=========================================================================
    pub fn ges_audio_track_get_type() -> GType;
    pub fn ges_audio_track_new() -> *mut GESAudioTrack;

    //=========================================================================
    // GESAudioTransition
    //=========================================================================
    pub fn ges_audio_transition_get_type() -> GType;
    pub fn ges_audio_transition_new() -> *mut GESAudioTransition;

    //=========================================================================
    // GESAudioUriSource
    //=========================================================================
    pub fn ges_audio_uri_source_get_type() -> GType;

    //=========================================================================
    // GESBaseEffect
    //=========================================================================
    pub fn ges_base_effect_get_type() -> GType;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_base_effect_is_time_effect(effect: *mut GESBaseEffect) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_base_effect_register_time_property(
        effect: *mut GESBaseEffect,
        child_property_name: *const c_char,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_base_effect_set_time_translation_funcs(
        effect: *mut GESBaseEffect,
        source_to_sink_func: GESBaseEffectTimeTranslationFunc,
        sink_to_source_func: GESBaseEffectTimeTranslationFunc,
        user_data: gpointer,
        destroy: glib::GDestroyNotify,
    ) -> gboolean;

    //=========================================================================
    // GESBaseEffectClip
    //=========================================================================
    pub fn ges_base_effect_clip_get_type() -> GType;

    //=========================================================================
    // GESBaseTransitionClip
    //=========================================================================
    pub fn ges_base_transition_clip_get_type() -> GType;

    //=========================================================================
    // GESBaseXmlFormatter
    //=========================================================================
    pub fn ges_base_xml_formatter_get_type() -> GType;

    //=========================================================================
    // GESClip
    //=========================================================================
    pub fn ges_clip_get_type() -> GType;
    pub fn ges_clip_add_asset(clip: *mut GESClip, asset: *mut GESAsset) -> *mut GESTrackElement;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_add_child_to_track(
        clip: *mut GESClip,
        child: *mut GESTrackElement,
        track: *mut GESTrack,
        error: *mut *mut glib::GError,
    ) -> *mut GESTrackElement;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_add_top_effect(
        clip: *mut GESClip,
        effect: *mut GESBaseEffect,
        index: c_int,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_clip_find_track_element(
        clip: *mut GESClip,
        track: *mut GESTrack,
        type_: GType,
    ) -> *mut GESTrackElement;
    pub fn ges_clip_find_track_elements(
        clip: *mut GESClip,
        track: *mut GESTrack,
        track_type: GESTrackType,
        type_: GType,
    ) -> *mut glib::GList;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_get_duration_limit(clip: *mut GESClip) -> gst::GstClockTime;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_get_internal_time_from_timeline_time(
        clip: *mut GESClip,
        child: *mut GESTrackElement,
        timeline_time: gst::GstClockTime,
        error: *mut *mut glib::GError,
    ) -> gst::GstClockTime;
    pub fn ges_clip_get_layer(clip: *mut GESClip) -> *mut GESLayer;
    pub fn ges_clip_get_supported_formats(clip: *mut GESClip) -> GESTrackType;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_get_timeline_time_from_internal_time(
        clip: *mut GESClip,
        child: *mut GESTrackElement,
        internal_time: gst::GstClockTime,
        error: *mut *mut glib::GError,
    ) -> gst::GstClockTime;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_get_timeline_time_from_source_frame(
        clip: *mut GESClip,
        frame_number: GESFrameNumber,
        error: *mut *mut glib::GError,
    ) -> gst::GstClockTime;
    pub fn ges_clip_get_top_effect_index(clip: *mut GESClip, effect: *mut GESBaseEffect) -> c_int;
    pub fn ges_clip_get_top_effect_position(
        clip: *mut GESClip,
        effect: *mut GESBaseEffect,
    ) -> c_int;
    pub fn ges_clip_get_top_effects(clip: *mut GESClip) -> *mut glib::GList;
    pub fn ges_clip_move_to_layer(clip: *mut GESClip, layer: *mut GESLayer) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_move_to_layer_full(
        clip: *mut GESClip,
        layer: *mut GESLayer,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_remove_top_effect(
        clip: *mut GESClip,
        effect: *mut GESBaseEffect,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_clip_set_supported_formats(clip: *mut GESClip, supportedformats: GESTrackType);
    pub fn ges_clip_set_top_effect_index(
        clip: *mut GESClip,
        effect: *mut GESBaseEffect,
        newindex: c_uint,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_set_top_effect_index_full(
        clip: *mut GESClip,
        effect: *mut GESBaseEffect,
        newindex: c_uint,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_clip_set_top_effect_priority(
        clip: *mut GESClip,
        effect: *mut GESBaseEffect,
        newpriority: c_uint,
    ) -> gboolean;
    pub fn ges_clip_split(clip: *mut GESClip, position: u64) -> *mut GESClip;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_split_full(
        clip: *mut GESClip,
        position: u64,
        error: *mut *mut glib::GError,
    ) -> *mut GESClip;

    //=========================================================================
    // GESClipAsset
    //=========================================================================
    pub fn ges_clip_asset_get_type() -> GType;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_asset_get_frame_time(
        self_: *mut GESClipAsset,
        frame_number: GESFrameNumber,
    ) -> gst::GstClockTime;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_clip_asset_get_natural_framerate(
        self_: *mut GESClipAsset,
        framerate_n: *mut c_int,
        framerate_d: *mut c_int,
    ) -> gboolean;
    pub fn ges_clip_asset_get_supported_formats(self_: *mut GESClipAsset) -> GESTrackType;
    pub fn ges_clip_asset_set_supported_formats(
        self_: *mut GESClipAsset,
        supportedformats: GESTrackType,
    );

    //=========================================================================
    // GESCommandLineFormatter
    //=========================================================================
    pub fn ges_command_line_formatter_get_type() -> GType;
    pub fn ges_command_line_formatter_get_help(
        nargs: c_int,
        commands: *mut *mut c_char,
    ) -> *mut c_char;
    pub fn ges_command_line_formatter_get_timeline_uri(timeline: *mut GESTimeline) -> *mut c_char;

    //=========================================================================
    // GESContainer
    //=========================================================================
    pub fn ges_container_get_type() -> GType;
    pub fn ges_container_group(containers: *mut glib::GList) -> *mut GESContainer;
    pub fn ges_container_add(
        container: *mut GESContainer,
        child: *mut GESTimelineElement,
    ) -> gboolean;
    pub fn ges_container_edit(
        container: *mut GESContainer,
        layers: *mut glib::GList,
        new_layer_priority: c_int,
        mode: GESEditMode,
        edge: GESEdge,
        position: u64,
    ) -> gboolean;
    pub fn ges_container_get_children(
        container: *mut GESContainer,
        recursive: gboolean,
    ) -> *mut glib::GList;
    pub fn ges_container_remove(
        container: *mut GESContainer,
        child: *mut GESTimelineElement,
    ) -> gboolean;
    pub fn ges_container_ungroup(
        container: *mut GESContainer,
        recursive: gboolean,
    ) -> *mut glib::GList;

    //=========================================================================
    // GESDiscovererManager
    //=========================================================================
    #[cfg(feature = "v1_24")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
    pub fn ges_discoverer_manager_get_type() -> GType;
    #[cfg(feature = "v1_24")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
    pub fn ges_discoverer_manager_get_default() -> *mut GESDiscovererManager;
    #[cfg(feature = "v1_24")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
    pub fn ges_discoverer_manager_get_timeout(
        self_: *mut GESDiscovererManager,
    ) -> gst::GstClockTime;
    #[cfg(feature = "v1_24")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
    pub fn ges_discoverer_manager_get_use_cache(self_: *mut GESDiscovererManager) -> gboolean;
    #[cfg(feature = "v1_24")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
    pub fn ges_discoverer_manager_set_timeout(
        self_: *mut GESDiscovererManager,
        timeout: gst::GstClockTime,
    );
    #[cfg(feature = "v1_24")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
    pub fn ges_discoverer_manager_set_use_cache(
        self_: *mut GESDiscovererManager,
        use_cache: gboolean,
    );

    //=========================================================================
    // GESEffect
    //=========================================================================
    pub fn ges_effect_get_type() -> GType;
    pub fn ges_effect_new(bin_description: *const c_char) -> *mut GESEffect;

    //=========================================================================
    // GESEffectAsset
    //=========================================================================
    pub fn ges_effect_asset_get_type() -> GType;

    //=========================================================================
    // GESEffectClip
    //=========================================================================
    pub fn ges_effect_clip_get_type() -> GType;
    pub fn ges_effect_clip_new(
        video_bin_description: *const c_char,
        audio_bin_description: *const c_char,
    ) -> *mut GESEffectClip;

    //=========================================================================
    // GESFormatter
    //=========================================================================
    pub fn ges_formatter_get_type() -> GType;
    pub fn ges_formatter_can_load_uri(
        uri: *const c_char,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_formatter_can_save_uri(
        uri: *const c_char,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_formatter_get_default() -> *mut GESAsset;
    pub fn ges_formatter_load_from_uri(
        formatter: *mut GESFormatter,
        timeline: *mut GESTimeline,
        uri: *const c_char,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_formatter_save_to_uri(
        formatter: *mut GESFormatter,
        timeline: *mut GESTimeline,
        uri: *const c_char,
        overwrite: gboolean,
        error: *mut *mut glib::GError,
    ) -> gboolean;

    //=========================================================================
    // GESGroup
    //=========================================================================
    pub fn ges_group_get_type() -> GType;
    pub fn ges_group_new() -> *mut GESGroup;

    //=========================================================================
    // GESImageSource
    //=========================================================================
    pub fn ges_image_source_get_type() -> GType;

    //=========================================================================
    // GESLayer
    //=========================================================================
    pub fn ges_layer_get_type() -> GType;
    pub fn ges_layer_new() -> *mut GESLayer;
    pub fn ges_layer_add_asset(
        layer: *mut GESLayer,
        asset: *mut GESAsset,
        start: gst::GstClockTime,
        inpoint: gst::GstClockTime,
        duration: gst::GstClockTime,
        track_types: GESTrackType,
    ) -> *mut GESClip;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_layer_add_asset_full(
        layer: *mut GESLayer,
        asset: *mut GESAsset,
        start: gst::GstClockTime,
        inpoint: gst::GstClockTime,
        duration: gst::GstClockTime,
        track_types: GESTrackType,
        error: *mut *mut glib::GError,
    ) -> *mut GESClip;
    pub fn ges_layer_add_clip(layer: *mut GESLayer, clip: *mut GESClip) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_layer_add_clip_full(
        layer: *mut GESLayer,
        clip: *mut GESClip,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_layer_get_active_for_track(layer: *mut GESLayer, track: *mut GESTrack) -> gboolean;
    pub fn ges_layer_get_auto_transition(layer: *mut GESLayer) -> gboolean;
    pub fn ges_layer_get_clips(layer: *mut GESLayer) -> *mut glib::GList;
    pub fn ges_layer_get_clips_in_interval(
        layer: *mut GESLayer,
        start: gst::GstClockTime,
        end: gst::GstClockTime,
    ) -> *mut glib::GList;
    pub fn ges_layer_get_duration(layer: *mut GESLayer) -> gst::GstClockTime;
    pub fn ges_layer_get_priority(layer: *mut GESLayer) -> c_uint;
    pub fn ges_layer_get_timeline(layer: *mut GESLayer) -> *mut GESTimeline;
    pub fn ges_layer_is_empty(layer: *mut GESLayer) -> gboolean;
    pub fn ges_layer_remove_clip(layer: *mut GESLayer, clip: *mut GESClip) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_layer_set_active_for_tracks(
        layer: *mut GESLayer,
        active: gboolean,
        tracks: *mut glib::GList,
    ) -> gboolean;
    pub fn ges_layer_set_auto_transition(layer: *mut GESLayer, auto_transition: gboolean);
    pub fn ges_layer_set_priority(layer: *mut GESLayer, priority: c_uint);
    pub fn ges_layer_set_timeline(layer: *mut GESLayer, timeline: *mut GESTimeline);

    //=========================================================================
    // GESMarker
    //=========================================================================
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_marker_get_type() -> GType;

    //=========================================================================
    // GESMarkerList
    //=========================================================================
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_marker_list_get_type() -> GType;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_marker_list_new() -> *mut GESMarkerList;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_marker_list_add(
        list: *mut GESMarkerList,
        position: gst::GstClockTime,
    ) -> *mut GESMarker;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_marker_list_get_markers(list: *mut GESMarkerList) -> *mut glib::GList;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_marker_list_move(
        list: *mut GESMarkerList,
        marker: *mut GESMarker,
        position: gst::GstClockTime,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_marker_list_remove(list: *mut GESMarkerList, marker: *mut GESMarker) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_marker_list_size(list: *mut GESMarkerList) -> c_uint;

    //=========================================================================
    // GESMultiFileSource
    //=========================================================================
    pub fn ges_multi_file_source_get_type() -> GType;
    pub fn ges_multi_file_source_new(uri: *mut c_char) -> *mut GESMultiFileSource;

    //=========================================================================
    // GESOperation
    //=========================================================================
    pub fn ges_operation_get_type() -> GType;

    //=========================================================================
    // GESOperationClip
    //=========================================================================
    pub fn ges_operation_clip_get_type() -> GType;

    //=========================================================================
    // GESOverlayClip
    //=========================================================================
    pub fn ges_overlay_clip_get_type() -> GType;

    //=========================================================================
    // GESPipeline
    //=========================================================================
    pub fn ges_pipeline_get_type() -> GType;
    pub fn ges_pipeline_new() -> *mut GESPipeline;
    pub fn ges_pipeline_get_mode(pipeline: *mut GESPipeline) -> GESPipelineFlags;
    pub fn ges_pipeline_get_thumbnail(
        self_: *mut GESPipeline,
        caps: *mut gst::GstCaps,
    ) -> *mut gst::GstSample;
    pub fn ges_pipeline_get_thumbnail_rgb24(
        self_: *mut GESPipeline,
        width: c_int,
        height: c_int,
    ) -> *mut gst::GstSample;
    pub fn ges_pipeline_preview_get_audio_sink(self_: *mut GESPipeline) -> *mut gst::GstElement;
    pub fn ges_pipeline_preview_get_video_sink(self_: *mut GESPipeline) -> *mut gst::GstElement;
    pub fn ges_pipeline_preview_set_audio_sink(self_: *mut GESPipeline, sink: *mut gst::GstElement);
    pub fn ges_pipeline_preview_set_video_sink(self_: *mut GESPipeline, sink: *mut gst::GstElement);
    pub fn ges_pipeline_save_thumbnail(
        self_: *mut GESPipeline,
        width: c_int,
        height: c_int,
        format: *const c_char,
        location: *const c_char,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_pipeline_set_mode(pipeline: *mut GESPipeline, mode: GESPipelineFlags) -> gboolean;
    pub fn ges_pipeline_set_render_settings(
        pipeline: *mut GESPipeline,
        output_uri: *const c_char,
        profile: *mut gst_pbutils::GstEncodingProfile,
    ) -> gboolean;
    pub fn ges_pipeline_set_timeline(
        pipeline: *mut GESPipeline,
        timeline: *mut GESTimeline,
    ) -> gboolean;

    //=========================================================================
    // GESPitiviFormatter
    //=========================================================================
    pub fn ges_pitivi_formatter_get_type() -> GType;
    pub fn ges_pitivi_formatter_new() -> *mut GESPitiviFormatter;

    //=========================================================================
    // GESProject
    //=========================================================================
    pub fn ges_project_get_type() -> GType;
    pub fn ges_project_new(uri: *const c_char) -> *mut GESProject;
    pub fn ges_project_add_asset(project: *mut GESProject, asset: *mut GESAsset) -> gboolean;
    pub fn ges_project_add_encoding_profile(
        project: *mut GESProject,
        profile: *mut gst_pbutils::GstEncodingProfile,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_project_add_formatter(project: *mut GESProject, formatter: *mut GESFormatter);
    pub fn ges_project_create_asset(
        project: *mut GESProject,
        id: *const c_char,
        extractable_type: GType,
    ) -> gboolean;
    pub fn ges_project_create_asset_sync(
        project: *mut GESProject,
        id: *const c_char,
        extractable_type: GType,
        error: *mut *mut glib::GError,
    ) -> *mut GESAsset;
    pub fn ges_project_get_asset(
        project: *mut GESProject,
        id: *const c_char,
        extractable_type: GType,
    ) -> *mut GESAsset;
    pub fn ges_project_get_loading_assets(project: *mut GESProject) -> *mut glib::GList;
    pub fn ges_project_get_uri(project: *mut GESProject) -> *mut c_char;
    pub fn ges_project_list_assets(project: *mut GESProject, filter: GType) -> *mut glib::GList;
    pub fn ges_project_list_encoding_profiles(project: *mut GESProject) -> *const glib::GList;
    pub fn ges_project_load(
        project: *mut GESProject,
        timeline: *mut GESTimeline,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_project_remove_asset(project: *mut GESProject, asset: *mut GESAsset) -> gboolean;
    pub fn ges_project_save(
        project: *mut GESProject,
        timeline: *mut GESTimeline,
        uri: *const c_char,
        formatter_asset: *mut GESAsset,
        overwrite: gboolean,
        error: *mut *mut glib::GError,
    ) -> gboolean;

    //=========================================================================
    // GESSource
    //=========================================================================
    pub fn ges_source_get_type() -> GType;

    //=========================================================================
    // GESSourceClip
    //=========================================================================
    pub fn ges_source_clip_get_type() -> GType;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_source_clip_new_time_overlay() -> *mut GESSourceClip;

    //=========================================================================
    // GESSourceClipAsset
    //=========================================================================
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_source_clip_asset_get_type() -> GType;

    //=========================================================================
    // GESTestClip
    //=========================================================================
    pub fn ges_test_clip_get_type() -> GType;
    pub fn ges_test_clip_new() -> *mut GESTestClip;
    pub fn ges_test_clip_new_for_nick(nick: *mut c_char) -> *mut GESTestClip;
    pub fn ges_test_clip_get_frequency(self_: *mut GESTestClip) -> c_double;
    pub fn ges_test_clip_get_volume(self_: *mut GESTestClip) -> c_double;
    pub fn ges_test_clip_get_vpattern(self_: *mut GESTestClip) -> GESVideoTestPattern;
    pub fn ges_test_clip_is_muted(self_: *mut GESTestClip) -> gboolean;
    pub fn ges_test_clip_set_frequency(self_: *mut GESTestClip, freq: c_double);
    pub fn ges_test_clip_set_mute(self_: *mut GESTestClip, mute: gboolean);
    pub fn ges_test_clip_set_volume(self_: *mut GESTestClip, volume: c_double);
    pub fn ges_test_clip_set_vpattern(self_: *mut GESTestClip, vpattern: GESVideoTestPattern);

    //=========================================================================
    // GESTextOverlay
    //=========================================================================
    pub fn ges_text_overlay_get_type() -> GType;
    pub fn ges_text_overlay_new() -> *mut GESTextOverlay;
    pub fn ges_text_overlay_get_color(self_: *mut GESTextOverlay) -> u32;
    pub fn ges_text_overlay_get_font_desc(self_: *mut GESTextOverlay) -> *const c_char;
    pub fn ges_text_overlay_get_halignment(self_: *mut GESTextOverlay) -> GESTextHAlign;
    pub fn ges_text_overlay_get_text(self_: *mut GESTextOverlay) -> *const c_char;
    pub fn ges_text_overlay_get_valignment(self_: *mut GESTextOverlay) -> GESTextVAlign;
    pub fn ges_text_overlay_get_xpos(self_: *mut GESTextOverlay) -> c_double;
    pub fn ges_text_overlay_get_ypos(self_: *mut GESTextOverlay) -> c_double;
    pub fn ges_text_overlay_set_color(self_: *mut GESTextOverlay, color: u32);
    pub fn ges_text_overlay_set_font_desc(self_: *mut GESTextOverlay, font_desc: *const c_char);
    pub fn ges_text_overlay_set_halignment(self_: *mut GESTextOverlay, halign: GESTextHAlign);
    pub fn ges_text_overlay_set_text(self_: *mut GESTextOverlay, text: *const c_char);
    pub fn ges_text_overlay_set_valignment(self_: *mut GESTextOverlay, valign: GESTextVAlign);
    pub fn ges_text_overlay_set_xpos(self_: *mut GESTextOverlay, position: c_double);
    pub fn ges_text_overlay_set_ypos(self_: *mut GESTextOverlay, position: c_double);

    //=========================================================================
    // GESTextOverlayClip
    //=========================================================================
    pub fn ges_text_overlay_clip_get_type() -> GType;
    pub fn ges_text_overlay_clip_new() -> *mut GESTextOverlayClip;
    pub fn ges_text_overlay_clip_get_color(self_: *mut GESTextOverlayClip) -> u32;
    pub fn ges_text_overlay_clip_get_font_desc(self_: *mut GESTextOverlayClip) -> *const c_char;
    pub fn ges_text_overlay_clip_get_halignment(self_: *mut GESTextOverlayClip) -> GESTextHAlign;
    pub fn ges_text_overlay_clip_get_text(self_: *mut GESTextOverlayClip) -> *const c_char;
    pub fn ges_text_overlay_clip_get_valignment(self_: *mut GESTextOverlayClip) -> GESTextVAlign;
    pub fn ges_text_overlay_clip_get_xpos(self_: *mut GESTextOverlayClip) -> c_double;
    pub fn ges_text_overlay_clip_get_ypos(self_: *mut GESTextOverlayClip) -> c_double;
    pub fn ges_text_overlay_clip_set_color(self_: *mut GESTextOverlayClip, color: u32);
    pub fn ges_text_overlay_clip_set_font_desc(
        self_: *mut GESTextOverlayClip,
        font_desc: *const c_char,
    );
    pub fn ges_text_overlay_clip_set_halign(self_: *mut GESTextOverlayClip, halign: GESTextHAlign);
    pub fn ges_text_overlay_clip_set_text(self_: *mut GESTextOverlayClip, text: *const c_char);
    pub fn ges_text_overlay_clip_set_valign(self_: *mut GESTextOverlayClip, valign: GESTextVAlign);
    pub fn ges_text_overlay_clip_set_xpos(self_: *mut GESTextOverlayClip, position: c_double);
    pub fn ges_text_overlay_clip_set_ypos(self_: *mut GESTextOverlayClip, position: c_double);

    //=========================================================================
    // GESTimeline
    //=========================================================================
    pub fn ges_timeline_get_type() -> GType;
    pub fn ges_timeline_new() -> *mut GESTimeline;
    pub fn ges_timeline_new_audio_video() -> *mut GESTimeline;
    pub fn ges_timeline_new_from_uri(
        uri: *const c_char,
        error: *mut *mut glib::GError,
    ) -> *mut GESTimeline;
    pub fn ges_timeline_add_layer(timeline: *mut GESTimeline, layer: *mut GESLayer) -> gboolean;
    pub fn ges_timeline_add_track(timeline: *mut GESTimeline, track: *mut GESTrack) -> gboolean;
    pub fn ges_timeline_append_layer(timeline: *mut GESTimeline) -> *mut GESLayer;
    pub fn ges_timeline_commit(timeline: *mut GESTimeline) -> gboolean;
    pub fn ges_timeline_commit_sync(timeline: *mut GESTimeline) -> gboolean;
    #[cfg(feature = "v1_22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_22")))]
    pub fn ges_timeline_disable_edit_apis(self_: *mut GESTimeline, disable_edit_apis: gboolean);
    #[cfg(feature = "v1_20")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_20")))]
    pub fn ges_timeline_freeze_commit(timeline: *mut GESTimeline);
    pub fn ges_timeline_get_auto_transition(timeline: *mut GESTimeline) -> gboolean;
    pub fn ges_timeline_get_duration(timeline: *mut GESTimeline) -> gst::GstClockTime;
    #[cfg(feature = "v1_22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_22")))]
    pub fn ges_timeline_get_edit_apis_disabled(self_: *mut GESTimeline) -> gboolean;
    pub fn ges_timeline_get_element(
        timeline: *mut GESTimeline,
        name: *const c_char,
    ) -> *mut GESTimelineElement;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_timeline_get_frame_at(
        self_: *mut GESTimeline,
        timestamp: gst::GstClockTime,
    ) -> GESFrameNumber;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_timeline_get_frame_time(
        self_: *mut GESTimeline,
        frame_number: GESFrameNumber,
    ) -> gst::GstClockTime;
    pub fn ges_timeline_get_groups(timeline: *mut GESTimeline) -> *mut glib::GList;
    pub fn ges_timeline_get_layer(timeline: *mut GESTimeline, priority: c_uint) -> *mut GESLayer;
    pub fn ges_timeline_get_layers(timeline: *mut GESTimeline) -> *mut glib::GList;
    pub fn ges_timeline_get_pad_for_track(
        timeline: *mut GESTimeline,
        track: *mut GESTrack,
    ) -> *mut gst::GstPad;
    pub fn ges_timeline_get_snapping_distance(timeline: *mut GESTimeline) -> gst::GstClockTime;
    pub fn ges_timeline_get_track_for_pad(
        timeline: *mut GESTimeline,
        pad: *mut gst::GstPad,
    ) -> *mut GESTrack;
    pub fn ges_timeline_get_tracks(timeline: *mut GESTimeline) -> *mut glib::GList;
    pub fn ges_timeline_is_empty(timeline: *mut GESTimeline) -> gboolean;
    pub fn ges_timeline_load_from_uri(
        timeline: *mut GESTimeline,
        uri: *const c_char,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    #[cfg(feature = "v1_16")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
    pub fn ges_timeline_move_layer(
        timeline: *mut GESTimeline,
        layer: *mut GESLayer,
        new_layer_priority: c_uint,
    ) -> gboolean;
    pub fn ges_timeline_paste_element(
        timeline: *mut GESTimeline,
        element: *mut GESTimelineElement,
        position: gst::GstClockTime,
        layer_priority: c_int,
    ) -> *mut GESTimelineElement;
    pub fn ges_timeline_remove_layer(timeline: *mut GESTimeline, layer: *mut GESLayer) -> gboolean;
    pub fn ges_timeline_remove_track(timeline: *mut GESTimeline, track: *mut GESTrack) -> gboolean;
    pub fn ges_timeline_save_to_uri(
        timeline: *mut GESTimeline,
        uri: *const c_char,
        formatter_asset: *mut GESAsset,
        overwrite: gboolean,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_timeline_set_auto_transition(timeline: *mut GESTimeline, auto_transition: gboolean);
    pub fn ges_timeline_set_snapping_distance(
        timeline: *mut GESTimeline,
        snapping_distance: gst::GstClockTime,
    );
    #[cfg(feature = "v1_20")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_20")))]
    pub fn ges_timeline_thaw_commit(timeline: *mut GESTimeline);

    //=========================================================================
    // GESTimelineElement
    //=========================================================================
    pub fn ges_timeline_element_get_type() -> GType;
    pub fn ges_timeline_element_add_child_property(
        self_: *mut GESTimelineElement,
        pspec: *mut gobject::GParamSpec,
        child: *mut gobject::GObject,
    ) -> gboolean;
    pub fn ges_timeline_element_copy(
        self_: *mut GESTimelineElement,
        deep: gboolean,
    ) -> *mut GESTimelineElement;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_timeline_element_edit(
        self_: *mut GESTimelineElement,
        layers: *mut glib::GList,
        new_layer_priority: i64,
        mode: GESEditMode,
        edge: GESEdge,
        position: u64,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_timeline_element_edit_full(
        self_: *mut GESTimelineElement,
        new_layer_priority: i64,
        mode: GESEditMode,
        edge: GESEdge,
        position: u64,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_timeline_element_get_child_properties(
        self_: *mut GESTimelineElement,
        first_property_name: *const c_char,
        ...
    );
    pub fn ges_timeline_element_get_child_property(
        self_: *mut GESTimelineElement,
        property_name: *const c_char,
        value: *mut gobject::GValue,
    ) -> gboolean;
    pub fn ges_timeline_element_get_child_property_by_pspec(
        self_: *mut GESTimelineElement,
        pspec: *mut gobject::GParamSpec,
        value: *mut gobject::GValue,
    );
    //pub fn ges_timeline_element_get_child_property_valist(self_: *mut GESTimelineElement, first_property_name: *const c_char, var_args: /*Unimplemented*/va_list);
    pub fn ges_timeline_element_get_duration(self_: *mut GESTimelineElement) -> gst::GstClockTime;
    pub fn ges_timeline_element_get_inpoint(self_: *mut GESTimelineElement) -> gst::GstClockTime;
    #[cfg(feature = "v1_16")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
    pub fn ges_timeline_element_get_layer_priority(self_: *mut GESTimelineElement) -> u32;
    pub fn ges_timeline_element_get_max_duration(
        self_: *mut GESTimelineElement,
    ) -> gst::GstClockTime;
    pub fn ges_timeline_element_get_name(self_: *mut GESTimelineElement) -> *mut c_char;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_timeline_element_get_natural_framerate(
        self_: *mut GESTimelineElement,
        framerate_n: *mut c_int,
        framerate_d: *mut c_int,
    ) -> gboolean;
    pub fn ges_timeline_element_get_parent(
        self_: *mut GESTimelineElement,
    ) -> *mut GESTimelineElement;
    pub fn ges_timeline_element_get_priority(self_: *mut GESTimelineElement) -> u32;
    pub fn ges_timeline_element_get_start(self_: *mut GESTimelineElement) -> gst::GstClockTime;
    pub fn ges_timeline_element_get_timeline(self_: *mut GESTimelineElement) -> *mut GESTimeline;
    pub fn ges_timeline_element_get_toplevel_parent(
        self_: *mut GESTimelineElement,
    ) -> *mut GESTimelineElement;
    pub fn ges_timeline_element_get_track_types(self_: *mut GESTimelineElement) -> GESTrackType;
    pub fn ges_timeline_element_list_children_properties(
        self_: *mut GESTimelineElement,
        n_properties: *mut c_uint,
    ) -> *mut *mut gobject::GParamSpec;
    pub fn ges_timeline_element_lookup_child(
        self_: *mut GESTimelineElement,
        prop_name: *const c_char,
        child: *mut *mut gobject::GObject,
        pspec: *mut *mut gobject::GParamSpec,
    ) -> gboolean;
    pub fn ges_timeline_element_paste(
        self_: *mut GESTimelineElement,
        paste_position: gst::GstClockTime,
    ) -> *mut GESTimelineElement;
    pub fn ges_timeline_element_remove_child_property(
        self_: *mut GESTimelineElement,
        pspec: *mut gobject::GParamSpec,
    ) -> gboolean;
    pub fn ges_timeline_element_ripple(
        self_: *mut GESTimelineElement,
        start: gst::GstClockTime,
    ) -> gboolean;
    pub fn ges_timeline_element_ripple_end(
        self_: *mut GESTimelineElement,
        end: gst::GstClockTime,
    ) -> gboolean;
    pub fn ges_timeline_element_roll_end(
        self_: *mut GESTimelineElement,
        end: gst::GstClockTime,
    ) -> gboolean;
    pub fn ges_timeline_element_roll_start(
        self_: *mut GESTimelineElement,
        start: gst::GstClockTime,
    ) -> gboolean;
    pub fn ges_timeline_element_set_child_properties(
        self_: *mut GESTimelineElement,
        first_property_name: *const c_char,
        ...
    );
    pub fn ges_timeline_element_set_child_property(
        self_: *mut GESTimelineElement,
        property_name: *const c_char,
        value: *const gobject::GValue,
    ) -> gboolean;
    pub fn ges_timeline_element_set_child_property_by_pspec(
        self_: *mut GESTimelineElement,
        pspec: *mut gobject::GParamSpec,
        value: *const gobject::GValue,
    );
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_timeline_element_set_child_property_full(
        self_: *mut GESTimelineElement,
        property_name: *const c_char,
        value: *const gobject::GValue,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    //pub fn ges_timeline_element_set_child_property_valist(self_: *mut GESTimelineElement, first_property_name: *const c_char, var_args: /*Unimplemented*/va_list);
    pub fn ges_timeline_element_set_duration(
        self_: *mut GESTimelineElement,
        duration: gst::GstClockTime,
    ) -> gboolean;
    pub fn ges_timeline_element_set_inpoint(
        self_: *mut GESTimelineElement,
        inpoint: gst::GstClockTime,
    ) -> gboolean;
    pub fn ges_timeline_element_set_max_duration(
        self_: *mut GESTimelineElement,
        maxduration: gst::GstClockTime,
    ) -> gboolean;
    pub fn ges_timeline_element_set_name(
        self_: *mut GESTimelineElement,
        name: *const c_char,
    ) -> gboolean;
    pub fn ges_timeline_element_set_parent(
        self_: *mut GESTimelineElement,
        parent: *mut GESTimelineElement,
    ) -> gboolean;
    pub fn ges_timeline_element_set_priority(
        self_: *mut GESTimelineElement,
        priority: u32,
    ) -> gboolean;
    pub fn ges_timeline_element_set_start(
        self_: *mut GESTimelineElement,
        start: gst::GstClockTime,
    ) -> gboolean;
    pub fn ges_timeline_element_set_timeline(
        self_: *mut GESTimelineElement,
        timeline: *mut GESTimeline,
    ) -> gboolean;
    pub fn ges_timeline_element_trim(
        self_: *mut GESTimelineElement,
        start: gst::GstClockTime,
    ) -> gboolean;

    //=========================================================================
    // GESTitleClip
    //=========================================================================
    pub fn ges_title_clip_get_type() -> GType;
    pub fn ges_title_clip_new() -> *mut GESTitleClip;
    pub fn ges_title_clip_get_background_color(self_: *mut GESTitleClip) -> u32;
    pub fn ges_title_clip_get_font_desc(self_: *mut GESTitleClip) -> *const c_char;
    pub fn ges_title_clip_get_halignment(self_: *mut GESTitleClip) -> GESTextHAlign;
    pub fn ges_title_clip_get_text(self_: *mut GESTitleClip) -> *const c_char;
    pub fn ges_title_clip_get_text_color(self_: *mut GESTitleClip) -> u32;
    pub fn ges_title_clip_get_valignment(self_: *mut GESTitleClip) -> GESTextVAlign;
    pub fn ges_title_clip_get_xpos(self_: *mut GESTitleClip) -> c_double;
    pub fn ges_title_clip_get_ypos(self_: *mut GESTitleClip) -> c_double;
    pub fn ges_title_clip_set_background(self_: *mut GESTitleClip, background: u32);
    pub fn ges_title_clip_set_color(self_: *mut GESTitleClip, color: u32);
    pub fn ges_title_clip_set_font_desc(self_: *mut GESTitleClip, font_desc: *const c_char);
    pub fn ges_title_clip_set_halignment(self_: *mut GESTitleClip, halign: GESTextHAlign);
    pub fn ges_title_clip_set_text(self_: *mut GESTitleClip, text: *const c_char);
    pub fn ges_title_clip_set_valignment(self_: *mut GESTitleClip, valign: GESTextVAlign);
    pub fn ges_title_clip_set_xpos(self_: *mut GESTitleClip, position: c_double);
    pub fn ges_title_clip_set_ypos(self_: *mut GESTitleClip, position: c_double);

    //=========================================================================
    // GESTitleSource
    //=========================================================================
    pub fn ges_title_source_get_type() -> GType;
    pub fn ges_title_source_get_background_color(source: *mut GESTitleSource) -> u32;
    pub fn ges_title_source_get_font_desc(source: *mut GESTitleSource) -> *const c_char;
    pub fn ges_title_source_get_halignment(source: *mut GESTitleSource) -> GESTextHAlign;
    pub fn ges_title_source_get_text(source: *mut GESTitleSource) -> *const c_char;
    pub fn ges_title_source_get_text_color(source: *mut GESTitleSource) -> u32;
    pub fn ges_title_source_get_valignment(source: *mut GESTitleSource) -> GESTextVAlign;
    pub fn ges_title_source_get_xpos(source: *mut GESTitleSource) -> c_double;
    pub fn ges_title_source_get_ypos(source: *mut GESTitleSource) -> c_double;
    pub fn ges_title_source_set_background_color(self_: *mut GESTitleSource, color: u32);
    pub fn ges_title_source_set_font_desc(self_: *mut GESTitleSource, font_desc: *const c_char);
    pub fn ges_title_source_set_halignment(self_: *mut GESTitleSource, halign: GESTextHAlign);
    pub fn ges_title_source_set_text(self_: *mut GESTitleSource, text: *const c_char);
    pub fn ges_title_source_set_text_color(self_: *mut GESTitleSource, color: u32);
    pub fn ges_title_source_set_valignment(self_: *mut GESTitleSource, valign: GESTextVAlign);
    pub fn ges_title_source_set_xpos(self_: *mut GESTitleSource, position: c_double);
    pub fn ges_title_source_set_ypos(self_: *mut GESTitleSource, position: c_double);

    //=========================================================================
    // GESTrack
    //=========================================================================
    pub fn ges_track_get_type() -> GType;
    pub fn ges_track_new(type_: GESTrackType, caps: *mut gst::GstCaps) -> *mut GESTrack;
    pub fn ges_track_add_element(track: *mut GESTrack, object: *mut GESTrackElement) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_track_add_element_full(
        track: *mut GESTrack,
        object: *mut GESTrackElement,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_track_commit(track: *mut GESTrack) -> gboolean;
    pub fn ges_track_get_caps(track: *mut GESTrack) -> *const gst::GstCaps;
    pub fn ges_track_get_elements(track: *mut GESTrack) -> *mut glib::GList;
    pub fn ges_track_get_mixing(track: *mut GESTrack) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_track_get_restriction_caps(track: *mut GESTrack) -> *mut gst::GstCaps;
    pub fn ges_track_get_timeline(track: *mut GESTrack) -> *const GESTimeline;
    pub fn ges_track_remove_element(track: *mut GESTrack, object: *mut GESTrackElement)
        -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_track_remove_element_full(
        track: *mut GESTrack,
        object: *mut GESTrackElement,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_track_set_create_element_for_gap_func(
        track: *mut GESTrack,
        func: GESCreateElementForGapFunc,
    );
    pub fn ges_track_set_mixing(track: *mut GESTrack, mixing: gboolean);
    pub fn ges_track_set_restriction_caps(track: *mut GESTrack, caps: *const gst::GstCaps);
    pub fn ges_track_set_timeline(track: *mut GESTrack, timeline: *mut GESTimeline);
    pub fn ges_track_update_restriction_caps(track: *mut GESTrack, caps: *const gst::GstCaps);

    //=========================================================================
    // GESTrackElement
    //=========================================================================
    pub fn ges_track_element_get_type() -> GType;
    pub fn ges_track_element_add_children_props(
        self_: *mut GESTrackElement,
        element: *mut gst::GstElement,
        wanted_categories: *mut *const c_char,
        blacklist: *mut *const c_char,
        whitelist: *mut *const c_char,
    );
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_track_element_clamp_control_source(
        object: *mut GESTrackElement,
        property_name: *const c_char,
    );
    pub fn ges_track_element_edit(
        object: *mut GESTrackElement,
        layers: *mut glib::GList,
        mode: GESEditMode,
        edge: GESEdge,
        position: u64,
    ) -> gboolean;
    pub fn ges_track_element_get_all_control_bindings(
        trackelement: *mut GESTrackElement,
    ) -> *mut glib::GHashTable;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_track_element_get_auto_clamp_control_sources(
        object: *mut GESTrackElement,
    ) -> gboolean;
    pub fn ges_track_element_get_child_properties(
        object: *mut GESTrackElement,
        first_property_name: *const c_char,
        ...
    );
    pub fn ges_track_element_get_child_property(
        object: *mut GESTrackElement,
        property_name: *const c_char,
        value: *mut gobject::GValue,
    ) -> gboolean;
    pub fn ges_track_element_get_child_property_by_pspec(
        object: *mut GESTrackElement,
        pspec: *mut gobject::GParamSpec,
        value: *mut gobject::GValue,
    );
    //pub fn ges_track_element_get_child_property_valist(object: *mut GESTrackElement, first_property_name: *const c_char, var_args: /*Unimplemented*/va_list);
    pub fn ges_track_element_get_control_binding(
        object: *mut GESTrackElement,
        property_name: *const c_char,
    ) -> *mut gst::GstControlBinding;
    pub fn ges_track_element_get_element(object: *mut GESTrackElement) -> *mut gst::GstElement;
    pub fn ges_track_element_get_gnlobject(object: *mut GESTrackElement) -> *mut gst::GstElement;
    pub fn ges_track_element_get_nleobject(object: *mut GESTrackElement) -> *mut gst::GstElement;
    pub fn ges_track_element_get_track(object: *mut GESTrackElement) -> *mut GESTrack;
    pub fn ges_track_element_get_track_type(object: *mut GESTrackElement) -> GESTrackType;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_track_element_has_internal_source(object: *mut GESTrackElement) -> gboolean;
    pub fn ges_track_element_is_active(object: *mut GESTrackElement) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_track_element_is_core(object: *mut GESTrackElement) -> gboolean;
    pub fn ges_track_element_list_children_properties(
        object: *mut GESTrackElement,
        n_properties: *mut c_uint,
    ) -> *mut *mut gobject::GParamSpec;
    pub fn ges_track_element_lookup_child(
        object: *mut GESTrackElement,
        prop_name: *const c_char,
        element: *mut *mut gst::GstElement,
        pspec: *mut *mut gobject::GParamSpec,
    ) -> gboolean;
    pub fn ges_track_element_remove_control_binding(
        object: *mut GESTrackElement,
        property_name: *const c_char,
    ) -> gboolean;
    pub fn ges_track_element_set_active(object: *mut GESTrackElement, active: gboolean)
        -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_track_element_set_auto_clamp_control_sources(
        object: *mut GESTrackElement,
        auto_clamp: gboolean,
    );
    pub fn ges_track_element_set_child_properties(
        object: *mut GESTrackElement,
        first_property_name: *const c_char,
        ...
    );
    pub fn ges_track_element_set_child_property(
        object: *mut GESTrackElement,
        property_name: *const c_char,
        value: *mut gobject::GValue,
    ) -> gboolean;
    pub fn ges_track_element_set_child_property_by_pspec(
        object: *mut GESTrackElement,
        pspec: *mut gobject::GParamSpec,
        value: *mut gobject::GValue,
    );
    //pub fn ges_track_element_set_child_property_valist(object: *mut GESTrackElement, first_property_name: *const c_char, var_args: /*Unimplemented*/va_list);
    pub fn ges_track_element_set_control_source(
        object: *mut GESTrackElement,
        source: *mut gst::GstControlSource,
        property_name: *const c_char,
        binding_type: *const c_char,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_track_element_set_has_internal_source(
        object: *mut GESTrackElement,
        has_internal_source: gboolean,
    ) -> gboolean;
    pub fn ges_track_element_set_track_type(object: *mut GESTrackElement, type_: GESTrackType);

    //=========================================================================
    // GESTrackElementAsset
    //=========================================================================
    pub fn ges_track_element_asset_get_type() -> GType;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_track_element_asset_get_natural_framerate(
        self_: *mut GESTrackElementAsset,
        framerate_n: *mut c_int,
        framerate_d: *mut c_int,
    ) -> gboolean;
    pub fn ges_track_element_asset_get_track_type(asset: *mut GESTrackElementAsset)
        -> GESTrackType;
    pub fn ges_track_element_asset_set_track_type(
        asset: *mut GESTrackElementAsset,
        type_: GESTrackType,
    );

    //=========================================================================
    // GESTransition
    //=========================================================================
    pub fn ges_transition_get_type() -> GType;

    //=========================================================================
    // GESTransitionClip
    //=========================================================================
    pub fn ges_transition_clip_get_type() -> GType;
    pub fn ges_transition_clip_new(vtype: GESVideoStandardTransitionType)
        -> *mut GESTransitionClip;
    pub fn ges_transition_clip_new_for_nick(nick: *mut c_char) -> *mut GESTransitionClip;

    //=========================================================================
    // GESUriClip
    //=========================================================================
    pub fn ges_uri_clip_get_type() -> GType;
    pub fn ges_uri_clip_new(uri: *const c_char) -> *mut GESUriClip;
    pub fn ges_uri_clip_get_uri(self_: *mut GESUriClip) -> *const c_char;
    pub fn ges_uri_clip_is_image(self_: *mut GESUriClip) -> gboolean;
    pub fn ges_uri_clip_is_muted(self_: *mut GESUriClip) -> gboolean;
    pub fn ges_uri_clip_set_is_image(self_: *mut GESUriClip, is_image: gboolean);
    pub fn ges_uri_clip_set_mute(self_: *mut GESUriClip, mute: gboolean);

    //=========================================================================
    // GESUriClipAsset
    //=========================================================================
    pub fn ges_uri_clip_asset_get_type() -> GType;
    #[cfg(feature = "v1_16")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
    pub fn ges_uri_clip_asset_finish(
        res: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut GESUriClipAsset;
    pub fn ges_uri_clip_asset_new(
        uri: *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn ges_uri_clip_asset_request_sync(
        uri: *const c_char,
        error: *mut *mut glib::GError,
    ) -> *mut GESUriClipAsset;
    pub fn ges_uri_clip_asset_get_duration(self_: *mut GESUriClipAsset) -> gst::GstClockTime;
    pub fn ges_uri_clip_asset_get_info(
        self_: *const GESUriClipAsset,
    ) -> *mut gst_pbutils::GstDiscovererInfo;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_uri_clip_asset_get_max_duration(self_: *mut GESUriClipAsset) -> gst::GstClockTime;
    pub fn ges_uri_clip_asset_get_stream_assets(self_: *mut GESUriClipAsset) -> *const glib::GList;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_uri_clip_asset_is_image(self_: *mut GESUriClipAsset) -> gboolean;

    //=========================================================================
    // GESUriSourceAsset
    //=========================================================================
    pub fn ges_uri_source_asset_get_type() -> GType;
    pub fn ges_uri_source_asset_get_filesource_asset(
        asset: *mut GESUriSourceAsset,
    ) -> *const GESUriClipAsset;
    pub fn ges_uri_source_asset_get_stream_info(
        asset: *mut GESUriSourceAsset,
    ) -> *mut gst_pbutils::GstDiscovererStreamInfo;
    pub fn ges_uri_source_asset_get_stream_uri(asset: *mut GESUriSourceAsset) -> *const c_char;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_uri_source_asset_is_image(asset: *mut GESUriSourceAsset) -> gboolean;

    //=========================================================================
    // GESVideoSource
    //=========================================================================
    pub fn ges_video_source_get_type() -> GType;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_video_source_get_natural_size(
        self_: *mut GESVideoSource,
        width: *mut c_int,
        height: *mut c_int,
    ) -> gboolean;

    //=========================================================================
    // GESVideoTestSource
    //=========================================================================
    pub fn ges_video_test_source_get_type() -> GType;
    pub fn ges_video_test_source_get_pattern(
        source: *mut GESVideoTestSource,
    ) -> GESVideoTestPattern;
    pub fn ges_video_test_source_set_pattern(
        self_: *mut GESVideoTestSource,
        pattern: GESVideoTestPattern,
    );

    //=========================================================================
    // GESVideoTrack
    //=========================================================================
    pub fn ges_video_track_get_type() -> GType;
    pub fn ges_video_track_new() -> *mut GESVideoTrack;

    //=========================================================================
    // GESVideoTransition
    //=========================================================================
    pub fn ges_video_transition_get_type() -> GType;
    pub fn ges_video_transition_new() -> *mut GESVideoTransition;
    pub fn ges_video_transition_get_border(self_: *mut GESVideoTransition) -> c_int;
    pub fn ges_video_transition_get_transition_type(
        trans: *mut GESVideoTransition,
    ) -> GESVideoStandardTransitionType;
    pub fn ges_video_transition_is_inverted(self_: *mut GESVideoTransition) -> gboolean;
    pub fn ges_video_transition_set_border(self_: *mut GESVideoTransition, value: c_uint);
    pub fn ges_video_transition_set_inverted(self_: *mut GESVideoTransition, inverted: gboolean);
    pub fn ges_video_transition_set_transition_type(
        self_: *mut GESVideoTransition,
        type_: GESVideoStandardTransitionType,
    ) -> gboolean;

    //=========================================================================
    // GESVideoUriSource
    //=========================================================================
    pub fn ges_video_uri_source_get_type() -> GType;

    //=========================================================================
    // GESXmlFormatter
    //=========================================================================
    pub fn ges_xml_formatter_get_type() -> GType;

    //=========================================================================
    // GESExtractable
    //=========================================================================
    pub fn ges_extractable_get_type() -> GType;
    pub fn ges_extractable_get_asset(self_: *mut GESExtractable) -> *mut GESAsset;
    pub fn ges_extractable_get_id(self_: *mut GESExtractable) -> *mut c_char;
    pub fn ges_extractable_set_asset(self_: *mut GESExtractable, asset: *mut GESAsset) -> gboolean;

    //=========================================================================
    // GESMetaContainer
    //=========================================================================
    pub fn ges_meta_container_get_type() -> GType;
    pub fn ges_meta_container_add_metas_from_string(
        container: *mut GESMetaContainer,
        str: *const c_char,
    ) -> gboolean;
    pub fn ges_meta_container_check_meta_registered(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        flags: *mut GESMetaFlag,
        type_: *mut GType,
    ) -> gboolean;
    pub fn ges_meta_container_foreach(
        container: *mut GESMetaContainer,
        func: GESMetaForeachFunc,
        user_data: gpointer,
    );
    pub fn ges_meta_container_get_boolean(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        dest: *mut gboolean,
    ) -> gboolean;
    pub fn ges_meta_container_get_date(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        dest: *mut *mut glib::GDate,
    ) -> gboolean;
    pub fn ges_meta_container_get_date_time(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        dest: *mut *mut gst::GstDateTime,
    ) -> gboolean;
    pub fn ges_meta_container_get_double(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        dest: *mut c_double,
    ) -> gboolean;
    pub fn ges_meta_container_get_float(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        dest: *mut c_float,
    ) -> gboolean;
    pub fn ges_meta_container_get_int(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        dest: *mut c_int,
    ) -> gboolean;
    pub fn ges_meta_container_get_int64(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        dest: *mut i64,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_meta_container_get_marker_list(
        container: *mut GESMetaContainer,
        key: *const c_char,
    ) -> *mut GESMarkerList;
    pub fn ges_meta_container_get_meta(
        container: *mut GESMetaContainer,
        key: *const c_char,
    ) -> *const gobject::GValue;
    pub fn ges_meta_container_get_string(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
    ) -> *const c_char;
    pub fn ges_meta_container_get_uint(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        dest: *mut c_uint,
    ) -> gboolean;
    pub fn ges_meta_container_get_uint64(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        dest: *mut u64,
    ) -> gboolean;
    pub fn ges_meta_container_metas_to_string(container: *mut GESMetaContainer) -> *mut c_char;
    pub fn ges_meta_container_register_meta(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: *const gobject::GValue,
    ) -> gboolean;
    pub fn ges_meta_container_register_meta_boolean(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: gboolean,
    ) -> gboolean;
    pub fn ges_meta_container_register_meta_date(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: *const glib::GDate,
    ) -> gboolean;
    pub fn ges_meta_container_register_meta_date_time(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: *const gst::GstDateTime,
    ) -> gboolean;
    pub fn ges_meta_container_register_meta_double(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: c_double,
    ) -> gboolean;
    pub fn ges_meta_container_register_meta_float(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: c_float,
    ) -> gboolean;
    pub fn ges_meta_container_register_meta_int(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: c_int,
    ) -> gboolean;
    pub fn ges_meta_container_register_meta_int64(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: i64,
    ) -> gboolean;
    pub fn ges_meta_container_register_meta_string(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: *const c_char,
    ) -> gboolean;
    pub fn ges_meta_container_register_meta_uint(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: c_uint,
    ) -> gboolean;
    pub fn ges_meta_container_register_meta_uint64(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        value: u64,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_meta_container_register_static_meta(
        container: *mut GESMetaContainer,
        flags: GESMetaFlag,
        meta_item: *const c_char,
        type_: GType,
    ) -> gboolean;
    pub fn ges_meta_container_set_boolean(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: gboolean,
    ) -> gboolean;
    pub fn ges_meta_container_set_date(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: *const glib::GDate,
    ) -> gboolean;
    pub fn ges_meta_container_set_date_time(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: *const gst::GstDateTime,
    ) -> gboolean;
    pub fn ges_meta_container_set_double(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: c_double,
    ) -> gboolean;
    pub fn ges_meta_container_set_float(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: c_float,
    ) -> gboolean;
    pub fn ges_meta_container_set_int(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: c_int,
    ) -> gboolean;
    pub fn ges_meta_container_set_int64(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: i64,
    ) -> gboolean;
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_meta_container_set_marker_list(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        list: *const GESMarkerList,
    ) -> gboolean;
    pub fn ges_meta_container_set_meta(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: *const gobject::GValue,
    ) -> gboolean;
    pub fn ges_meta_container_set_string(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: *const c_char,
    ) -> gboolean;
    pub fn ges_meta_container_set_uint(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: c_uint,
    ) -> gboolean;
    pub fn ges_meta_container_set_uint64(
        container: *mut GESMetaContainer,
        meta_item: *const c_char,
        value: u64,
    ) -> gboolean;

    //=========================================================================
    // Other functions
    //=========================================================================
    pub fn ges_add_missing_uri_relocation_uri(uri: *const c_char, recurse: gboolean) -> gboolean;
    #[cfg(feature = "v1_24")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
    pub fn ges_buffer_add_frame_composition_meta(
        buffer: *mut gst::GstBuffer,
    ) -> *mut GESFrameCompositionMeta;
    pub fn ges_deinit();
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    pub fn ges_find_formatter_for_uri(uri: *const c_char) -> *mut GESAsset;
    #[cfg(feature = "v1_24")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
    pub fn ges_frame_composition_meta_api_get_type() -> GType;
    pub fn ges_init() -> gboolean;
    pub fn ges_init_check(
        argc: *mut c_int,
        argv: *mut *mut *mut c_char,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn ges_init_get_option_group() -> *mut glib::GOptionGroup;
    #[cfg(feature = "v1_16")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
    pub fn ges_is_initialized() -> gboolean;
    pub fn ges_list_assets(filter: GType) -> *mut glib::GList;
    pub fn ges_play_sink_convert_frame(
        playsink: *mut gst::GstElement,
        caps: *mut gst::GstCaps,
    ) -> *mut gst::GstSample;
    pub fn ges_pspec_equal(key_spec_1: gconstpointer, key_spec_2: gconstpointer) -> gboolean;
    pub fn ges_pspec_hash(key_spec: gconstpointer) -> c_uint;
    pub fn ges_validate_register_action_types() -> gboolean;
    pub fn ges_version(
        major: *mut c_uint,
        minor: *mut c_uint,
        micro: *mut c_uint,
        nano: *mut c_uint,
    );

}