summaryrefslogtreecommitdiff
path: root/docs/gst/gstreamer-sections.txt
blob: e6ccf1b1d31689b03b8e953a82a369bc2592ed94 (plain)
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
# GStreamer API reference sections

# please add sections in alphabetical order using the following template
# leave two empty lines between sections
# <SECTION>
# <FILE>gstxxx</FILE>
# <TITLE>GstXxx</TITLE>
# typedefs
# macros
# constructor
# methods
# <SUBSECTION Standard>
# <SUBSECTION Private>
# </SECTION>

<INCLUDE>gst/gst.h</INCLUDE>


<SECTION>
<FILE>gst</FILE>
<TITLE>Gst</TITLE>
gst_init
gst_init_check
gst_init_get_option_group
gst_is_initialized
gst_deinit
gst_version
gst_version_string
gst_segtrap_is_enabled
gst_segtrap_set_enabled
gst_registry_fork_is_enabled
gst_registry_fork_set_enabled
gst_update_registry
<SUBSECTION Private>
GST_QUARK
GstQuarkId
GstPluginLoader
GstPluginLoaderFuncs
GstAllocTrace
GstAllocTraceFlags
</SECTION>

<SECTION>
<FILE>gstatomicqueue</FILE>
<TITLE>GstAtomicQueue</TITLE>
GstAtomicQueue
gst_atomic_queue_new

gst_atomic_queue_ref
gst_atomic_queue_unref

gst_atomic_queue_push
gst_atomic_queue_peek
gst_atomic_queue_pop

gst_atomic_queue_length

<SUBSECTION Standard>
GST_TYPE_ATOMIC_QUEUE
gst_atomic_queue_get_type
</SECTION>

<SECTION>
<FILE>gstbin</FILE>
<TITLE>GstBin</TITLE>
GstBin
GstBinClass

gst_bin_new
gst_bin_add
gst_bin_remove

gst_bin_get_by_name
gst_bin_get_by_name_recurse_up
gst_bin_get_by_interface

gst_bin_iterate_elements
gst_bin_iterate_recurse
gst_bin_iterate_sinks
gst_bin_iterate_sorted
gst_bin_iterate_sources
gst_bin_iterate_all_by_interface

gst_bin_recalculate_latency

<SUBSECTION>
gst_bin_add_many
gst_bin_remove_many
gst_bin_find_unlinked_pad

<SUBSECTION>
GstBinFlags

GST_BIN_IS_NO_RESYNC

GST_BIN_CHILDREN
GST_BIN_CHILDREN_COOKIE
GST_BIN_NUMCHILDREN

<SUBSECTION Standard>
GST_BIN
GST_IS_BIN
GST_TYPE_BIN
GST_BIN_CLASS
GST_IS_BIN_CLASS
GST_BIN_GET_CLASS
GST_TYPE_BIN_FLAGS
GST_BIN_CAST
<SUBSECTION Private>
gst_bin_get_type
gst_bin_flags_get_type
GstBinPrivate
</SECTION>


<SECTION>
<FILE>gstbus</FILE>
<TITLE>GstBus</TITLE>
GstBus
GstBusFlags
GstBusSyncReply
GstBusFunc
GstBusSyncHandler
gst_bus_new
gst_bus_post
gst_bus_have_pending
gst_bus_peek
gst_bus_pop
gst_bus_pop_filtered
gst_bus_timed_pop
gst_bus_timed_pop_filtered
gst_bus_set_flushing
gst_bus_set_sync_handler
gst_bus_sync_signal_handler
gst_bus_create_watch
gst_bus_add_watch_full
gst_bus_add_watch
gst_bus_disable_sync_message_emission
gst_bus_enable_sync_message_emission
gst_bus_async_signal_func
gst_bus_add_signal_watch
gst_bus_add_signal_watch_full
gst_bus_remove_signal_watch
gst_bus_poll
<SUBSECTION Standard>
GstBusClass
GST_BUS
GST_IS_BUS
GST_TYPE_BUS
GST_BUS_CLASS
GST_IS_BUS_CLASS
GST_BUS_GET_CLASS
GST_TYPE_BUS_FLAGS
GST_TYPE_BUS_SYNC_REPLY
GST_BUS_CAST
<SUBSECTION Private>
gst_bus_get_type
gst_bus_flags_get_type
gst_bus_sync_reply_get_type
GstBusPrivate
</SECTION>


<SECTION>
<FILE>gstbuffer</FILE>
<TITLE>GstBuffer</TITLE>
GstBuffer
GstBufferFlags
GST_BUFFER_FLAGS
GST_BUFFER_FLAG_IS_SET
GST_BUFFER_FLAG_SET
GST_BUFFER_FLAG_UNSET

GST_BUFFER_PTS
GST_BUFFER_DTS
GST_BUFFER_DURATION
GST_BUFFER_OFFSET
GST_BUFFER_OFFSET_END
GST_BUFFER_OFFSET_NONE
GST_BUFFER_DURATION_IS_VALID
GST_BUFFER_PTS_IS_VALID
GST_BUFFER_DTS_IS_VALID
GST_BUFFER_OFFSET_IS_VALID
GST_BUFFER_OFFSET_END_IS_VALID
GST_BUFFER_IS_DISCONT

gst_buffer_new
gst_buffer_new_allocate
gst_buffer_new_wrapped
gst_buffer_new_wrapped_full

gst_buffer_ref
gst_buffer_unref

gst_buffer_get_sizes
gst_buffer_get_size
gst_buffer_get_sizes_range
gst_buffer_resize_range
gst_buffer_resize
gst_buffer_set_size

gst_buffer_peek_memory

gst_buffer_n_memory
gst_buffer_insert_memory
gst_buffer_replace_memory_range
gst_buffer_get_memory_range
gst_buffer_remove_memory_range
gst_buffer_find_memory

gst_buffer_prepend_memory
gst_buffer_append_memory
gst_buffer_replace_memory
gst_buffer_replace_all_memory
gst_buffer_get_memory
gst_buffer_get_all_memory
gst_buffer_remove_memory
gst_buffer_remove_all_memory

gst_buffer_map
gst_buffer_map_range
gst_buffer_unmap

gst_buffer_memcmp
gst_buffer_extract
gst_buffer_extract_dup
gst_buffer_fill
gst_buffer_memset

GstBufferCopyFlags
GST_BUFFER_COPY_METADATA
GST_BUFFER_COPY_ALL
gst_buffer_copy
gst_buffer_copy_into
gst_buffer_copy_region

gst_buffer_is_writable
gst_buffer_make_writable
gst_buffer_replace

gst_buffer_append
gst_buffer_append_region

gst_buffer_get_meta
gst_buffer_add_meta
gst_buffer_remove_meta
gst_buffer_iterate_meta
GstBufferForeachMetaFunc
gst_buffer_foreach_meta

<SUBSECTION Standard>
GstBufferClass
GST_BUFFER
GST_IS_BUFFER
GST_TYPE_BUFFER
GST_TYPE_BUFFER_FLAGS
GST_TYPE_BUFFER_COPY_FLAGS
GST_BUFFER_CAST
<SUBSECTION Private>
gst_buffer_get_type
gst_buffer_flags_get_type
gst_buffer_copy_flags_get_type
GST_BUFFER_TIMESTAMP
GST_BUFFER_TIMESTAMP_IS_VALID
</SECTION>

<SECTION>
<FILE>gstmeta</FILE>
<TITLE>GstMeta</TITLE>
GstMeta
GstMetaFlags
GST_META_FLAGS
GST_META_FLAG_IS_SET
GST_META_FLAG_SET
GST_META_FLAG_UNSET
GstMetaInfo
GstMetaInitFunction
GstMetaFreeFunction
GstMetaTransformFunction
GstMetaTransformCopy
GST_META_TRANSFORM_IS_COPY
gst_meta_api_type_register
gst_meta_api_type_has_tag
GST_META_TAG_MEMORY
gst_meta_register
gst_meta_get_info
<SUBSECTION Standard>
GST_META_CAST
<SUBSECTION Private>
GST_TYPE_META_FLAGS
gst_meta_flags_get_type
</SECTION>


<SECTION>
<FILE>gstbufferpool</FILE>
<TITLE>GstBufferPool</TITLE>
GstBufferPool
GstBufferPoolClass
GST_BUFFER_POOL_IS_FLUSHING
gst_buffer_pool_new

gst_buffer_pool_config_get_params
gst_buffer_pool_config_set_params
gst_buffer_pool_config_get_allocator
gst_buffer_pool_config_set_allocator

gst_buffer_pool_config_n_options
gst_buffer_pool_config_add_option
gst_buffer_pool_config_get_option
gst_buffer_pool_config_has_option

gst_buffer_pool_get_options
gst_buffer_pool_has_option

gst_buffer_pool_get_config
gst_buffer_pool_set_config

gst_buffer_pool_set_active
gst_buffer_pool_is_active

GstBufferPoolAcquireFlags
GstBufferPoolAcquireParams
gst_buffer_pool_acquire_buffer
gst_buffer_pool_release_buffer
<SUBSECTION Standard>
GST_BUFFER_POOL_CLASS
GST_BUFFER_POOL_CAST
GstBufferPoolPrivate
GST_BUFFER_POOL
GST_IS_BUFFER_POOL
GST_TYPE_BUFFER_POOL
gst_buffer_pool_get_type
GST_TYPE_BUFFER_POOL_ACQUIRE_FLAGS
gst_buffer_pool_acquire_flags_get_type
GST_IS_BUFFER_POOL_CLASS
GST_BUFFER_POOL_GET_CLASS
</SECTION>

<SECTION>
<FILE>gstbufferlist</FILE>
<TITLE>GstBufferList</TITLE>
GstBufferList

gst_buffer_list_new
gst_buffer_list_new_sized
gst_buffer_list_length
gst_buffer_list_add
gst_buffer_list_insert
gst_buffer_list_remove

gst_buffer_list_ref
gst_buffer_list_unref
gst_buffer_list_copy
gst_buffer_list_is_writable
gst_buffer_list_make_writable

GstBufferListFunc
gst_buffer_list_foreach
gst_buffer_list_get

<SUBSECTION Standard>
GST_BUFFER_LIST
GST_IS_BUFFER_LIST
GST_TYPE_BUFFER_LIST
GST_BUFFER_LIST_CAST
<SUBSECTION Private>
gst_buffer_list_get_type
</SECTION>

<SECTION>
<FILE>gstcaps</FILE>
<TITLE>GstCaps</TITLE>
GstCaps
GstStaticCaps
GstCapsIntersectMode

GstCapsFlags
GST_CAPS_ANY
GST_CAPS_NONE
GST_CAPS_REFCOUNT
GST_CAPS_REFCOUNT_VALUE
GST_STATIC_CAPS_ANY
GST_STATIC_CAPS_NONE
GST_CAPS_IS_SIMPLE
GST_STATIC_CAPS
GST_CAPS_FLAGS
GST_CAPS_FLAG_IS_SET
GST_CAPS_FLAG_SET
GST_CAPS_FLAG_UNSET

gst_caps_new_empty
gst_caps_new_empty_simple
gst_caps_new_any
gst_caps_new_simple
gst_caps_new_full
gst_caps_new_full_valist
gst_caps_is_writable
gst_caps_copy
gst_caps_copy_nth
gst_static_caps_get
gst_static_caps_cleanup
gst_caps_append
gst_caps_merge
gst_caps_append_structure
gst_caps_remove_structure
gst_caps_steal_structure
gst_caps_merge_structure
gst_caps_get_size
gst_caps_get_structure
gst_caps_set_value
gst_caps_set_simple
gst_caps_set_simple_valist
gst_caps_is_any
gst_caps_is_empty
gst_caps_is_fixed
gst_caps_is_equal
gst_caps_is_equal_fixed
gst_caps_is_strictly_equal
gst_caps_is_always_compatible
gst_caps_is_subset
gst_caps_is_subset_structure
gst_caps_can_intersect
gst_caps_intersect
gst_caps_intersect_full
gst_caps_normalize
gst_caps_simplify
gst_caps_replace
gst_caps_take
gst_caps_to_string
gst_caps_from_string
gst_caps_subtract
gst_caps_make_writable
gst_caps_truncate
gst_caps_fixate
gst_caps_ref
gst_caps_unref
<SUBSECTION Standard>
GST_CAPS
GST_IS_CAPS
GST_TYPE_CAPS
GST_TYPE_CAPS_FLAGS
GST_TYPE_CAPS_INTERSECT_MODE
GST_CAPS_CAST
<SUBSECTION Private>
gst_caps_flags_get_type
gst_caps_get_type
gst_caps_intersect_mode_get_type
</SECTION>

<SECTION>
<FILE>gstsample</FILE>
<TITLE>GstSample</TITLE>
GstSample
gst_sample_get_buffer
gst_sample_get_caps
gst_sample_get_info
gst_sample_get_segment
gst_sample_new
gst_sample_ref
gst_sample_unref
<SUBSECTION Standard>
GST_IS_SAMPLE
GST_SAMPLE
GST_TYPE_SAMPLE
gst_sample_get_type
GST_SAMPLE_CAST
</SECTION>

<SECTION>
<FILE>gstchildproxy</FILE>
<TITLE>GstChildProxy</TITLE>
GstChildProxy
GstChildProxyInterface
gst_child_proxy_get_children_count
gst_child_proxy_get_child_by_name
gst_child_proxy_get_child_by_index
gst_child_proxy_lookup
gst_child_proxy_get_property
gst_child_proxy_get_valist
gst_child_proxy_get
gst_child_proxy_set_property
gst_child_proxy_set_valist
gst_child_proxy_set
gst_child_proxy_child_added
gst_child_proxy_child_removed
<SUBSECTION Standard>
GST_CHILD_PROXY
GST_IS_CHILD_PROXY
GST_CHILD_PROXY_GET_INTERFACE
GST_TYPE_CHILD_PROXY
<SUBSECTION Private>
gst_child_proxy_get_type
</SECTION>


<SECTION>
<FILE>gstclock</FILE>
<TITLE>GstClock</TITLE>
GstClock
GstClockClass
GstClockTime
GstClockTimeDiff
GstClockID
GST_CLOCK_TIME_NONE
GST_CLOCK_TIME_IS_VALID
GST_SECOND
GST_MSECOND
GST_USECOND
GST_NSECOND
GST_TIME_AS_SECONDS
GST_TIME_AS_MSECONDS
GST_TIME_AS_USECONDS
GST_TIME_AS_NSECONDS
GST_CLOCK_DIFF
GST_TIMEVAL_TO_TIME
GST_TIME_TO_TIMEVAL
GST_TIMESPEC_TO_TIME
GST_TIME_TO_TIMESPEC
GstClockEntry
GstClockCallback
GstClockEntryType
GST_CLOCK_ENTRY
GST_CLOCK_ENTRY_CLOCK
GST_CLOCK_ENTRY_TYPE
GST_CLOCK_ENTRY_TIME
GST_CLOCK_ENTRY_INTERVAL
GST_CLOCK_ENTRY_STATUS
GstClockReturn
GstClockFlags
GST_CLOCK_FLAGS
gst_clock_add_observation
gst_clock_set_master
gst_clock_get_master
gst_clock_set_resolution
gst_clock_get_resolution
gst_clock_get_time
gst_clock_new_single_shot_id
gst_clock_new_periodic_id
gst_clock_single_shot_id_reinit
gst_clock_periodic_id_reinit
gst_clock_get_internal_time
gst_clock_adjust_unlocked
gst_clock_unadjust_unlocked
gst_clock_get_calibration
gst_clock_set_calibration
gst_clock_get_timeout
gst_clock_set_timeout
gst_clock_id_get_time
gst_clock_id_wait
gst_clock_id_wait_async
gst_clock_id_unschedule
gst_clock_id_compare_func
gst_clock_id_ref
gst_clock_id_unref
<SUBSECTION Standard>
GST_CLOCK
GST_IS_CLOCK
GST_TYPE_CLOCK
GST_CLOCK_CLASS
GST_IS_CLOCK_CLASS
GST_CLOCK_GET_CLASS
GST_CLOCK_CAST
GST_TYPE_CLOCK_ENTRY_TYPE
GST_TYPE_CLOCK_FLAGS
GST_TYPE_CLOCK_RETURN
GST_TYPE_CLOCK_TIME
<SUBSECTION Private>
GstClockPrivate
GST_CLOCK_SLAVE_LOCK
GST_CLOCK_SLAVE_UNLOCK
gst_clock_get_type
gst_clock_entry_type_get_type
gst_clock_flags_get_type
gst_clock_return_get_type
</SECTION>


<SECTION>
<FILE>gstcompat</FILE>
<TITLE>GstCompat</TITLE>
<SUBSECTION Standard>
gst_element_class_set_details_simple
gst_element_factory_get_author
gst_element_factory_get_description
gst_element_factory_get_documentation_uri
gst_element_factory_get_icon_name
gst_element_factory_get_klass
gst_element_factory_get_longname
gst_pad_get_caps_reffed
gst_pad_peer_get_caps_reffed
gst_pad_set_caps
gst_buffer_new_and_alloc
GST_BUFFER_TIMESTAMP
GST_BUFFER_TIMESTAMP_IS_VALID
GST_MESSAGE_DURATION
gst_message_new_duration
gst_message_parse_duration
gst_adapter_prev_timestamp
<SUBSECTION Private>
</SECTION>


<SECTION>
<FILE>gstconfig</FILE>
GST_DISABLE_GST_DEBUG
GST_DISABLE_PARSE
GST_DISABLE_TRACE
GST_DISABLE_ALLOC_TRACE
GST_DISABLE_REGISTRY
GST_DISABLE_PLUGIN
<SUBSECTION Private>
GST_HAVE_GLIB_2_8
GST_PTR_FORMAT
GST_SEGMENT_FORMAT
GST_EXPORT
GST_PLUGIN_EXPORT
GST_PADDING
GST_PADDING_LARGE
GST_PADDING_INIT
GST_USING_PRINTF_EXTENSION
</SECTION>


<SECTION>
<FILE>gstcontrolbinding</FILE>
<TITLE>GstControlBinding</TITLE>
GstControlBinding
GstControlBindingClass
gst_control_binding_sync_values
gst_control_binding_get_value
gst_control_binding_get_value_array
gst_control_binding_get_g_value_array
gst_control_binding_set_disabled
gst_control_binding_is_disabled
<SUBSECTION Standard>
GST_CONTROL_BINDING
GST_IS_CONTROL_BINDING
GST_CONTROL_BINDING_CLASS
GST_IS_CONTROL_BINDING_CLASS
GST_CONTROL_BINDING_GET_CLASS
GST_TYPE_CONTROL_BINDING
<SUBSECTION Private>
GstControlBindingConvert
gst_control_binding_get_type
</SECTION>

<SECTION>
<FILE>gstcontrolsource</FILE>
<TITLE>GstControlSource</TITLE>
GstValueArray
GstControlSource
GstControlSourceClass
GstControlSourceGetValue
GstControlSourceGetValueArray
GstTimedValue
gst_control_source_get_value
gst_control_source_get_value_array
<SUBSECTION Standard>
GST_CONTROL_SOURCE
GST_IS_CONTROL_SOURCE
GST_CONTROL_SOURCE_CLASS
GST_IS_CONTROL_SOURCE_CLASS
GST_CONTROL_SOURCE_GET_CLASS
GST_TYPE_CONTROL_SOURCE
<SUBSECTION Private>
gst_control_source_get_type
</SECTION>


<SECTION>
<FILE>gstelement</FILE>
<TITLE>GstElement</TITLE>
GstElement
GstElementClass
GstElementFlags
GstState
GstStateChange
GstStateChangeReturn

GST_STATE
GST_STATE_GET_NEXT
GST_STATE_NEXT
GST_STATE_PENDING
GST_STATE_RETURN
GST_STATE_TARGET
GST_STATE_TRANSITION
GST_STATE_TRANSITION_CURRENT
GST_STATE_TRANSITION_NEXT

GST_STATE_GET_LOCK
GST_STATE_GET_COND

GST_ELEMENT_NAME
GST_ELEMENT_PARENT
GST_ELEMENT_BUS
GST_ELEMENT_CLOCK
GST_ELEMENT_PADS
GST_ELEMENT_START_TIME
GST_ELEMENT_ERROR
GST_ELEMENT_WARNING
GST_ELEMENT_INFO
GST_ELEMENT_IS_LOCKED_STATE

<SUBSECTION element-metadata>
GST_ELEMENT_METADATA_AUTHOR
GST_ELEMENT_METADATA_DESCRIPTION
GST_ELEMENT_METADATA_DOC_URI
GST_ELEMENT_METADATA_ICON_NAME
GST_ELEMENT_METADATA_KLASS
GST_ELEMENT_METADATA_LONGNAME

<SUBSECTION element-construction>
gst_element_class_add_pad_template
gst_element_class_get_pad_template
gst_element_class_get_pad_template_list
gst_element_class_set_metadata
gst_element_class_set_static_metadata
gst_element_class_add_metadata
gst_element_class_add_static_metadata

<SUBSECTION element-pads>
gst_element_add_pad
gst_element_create_all_pads
gst_element_get_compatible_pad
gst_element_get_compatible_pad_template
gst_element_get_request_pad
gst_element_get_static_pad
gst_element_request_pad
gst_element_no_more_pads
gst_element_release_request_pad
gst_element_remove_pad
gst_element_iterate_pads
gst_element_iterate_sink_pads
gst_element_iterate_src_pads

<SUBSECTION element-linking>
gst_element_link
gst_element_unlink
gst_element_link_many
gst_element_unlink_many
gst_element_link_pads
gst_element_link_pads_full
gst_element_unlink_pads
gst_element_link_pads_filtered
gst_element_link_filtered

<SUBSECTION element-properties>
gst_element_class_get_metadata
gst_element_set_base_time
gst_element_get_base_time
gst_element_set_start_time
gst_element_get_start_time
gst_element_set_bus
gst_element_get_bus
gst_element_get_factory
gst_element_set_name
gst_element_get_name
gst_element_set_parent
gst_element_get_parent

<SUBSECTION element-clocks>
gst_element_set_clock
gst_element_get_clock
gst_element_provide_clock

<SUBSECTION element-states>
gst_element_set_state
gst_element_get_state
gst_element_set_locked_state
gst_element_is_locked_state
gst_element_abort_state
gst_element_continue_state
gst_element_lost_state
gst_element_state_get_name
gst_element_state_change_return_get_name
gst_element_sync_state_with_parent
gst_element_change_state

<SUBSECTION element-messages>
gst_element_message_full
gst_element_post_message

<SUBSECTION element-query>
gst_element_query
gst_element_query_convert
gst_element_query_position
gst_element_query_duration

<SUBSECTION element-event>
gst_element_send_event
gst_element_seek_simple
gst_element_seek

<SUBSECTION Standard>
GST_ELEMENT
GST_IS_ELEMENT
GST_ELEMENT_CLASS
GST_IS_ELEMENT_CLASS
GST_ELEMENT_GET_CLASS
GST_TYPE_ELEMENT
GST_TYPE_ELEMENT_FLAGS
GST_ELEMENT_CAST
GST_TYPE_STATE
GST_TYPE_STATE_CHANGE
GST_TYPE_STATE_CHANGE_RETURN
<SUBSECTION Private>
GST_STATE_LOCK
GST_STATE_TRYLOCK
GST_STATE_UNLOCK
GST_STATE_UNLOCK_FULL
GST_STATE_LOCK_FULL
GST_STATE_WAIT
GST_STATE_WAIT_UNTIL
GST_STATE_SIGNAL
GST_STATE_BROADCAST

gst_element_get_type
gst_element_flags_get_type
gst_state_get_type
gst_state_change_get_type
gst_state_change_return_get_type
</SECTION>


<SECTION>
<FILE>gstelementfactory</FILE>
<TITLE>GstElementFactory</TITLE>
GstElementFactory
gst_element_register
gst_element_factory_find
gst_element_factory_get_element_type
gst_element_factory_get_metadata
gst_element_factory_get_metadata_keys
gst_element_factory_get_num_pad_templates
gst_element_factory_get_uri_type
gst_element_factory_get_uri_protocols
gst_element_factory_has_interface
gst_element_factory_create
gst_element_factory_make
gst_element_factory_can_sink_all_caps
gst_element_factory_can_src_all_caps
gst_element_factory_can_sink_any_caps
gst_element_factory_can_src_any_caps
gst_element_factory_get_static_pad_templates
GstElementFactoryListType
GST_ELEMENT_FACTORY_TYPE_ANY
GST_ELEMENT_FACTORY_TYPE_AUDIOVIDEO_SINKS
GST_ELEMENT_FACTORY_TYPE_AUDIO_ENCODER
GST_ELEMENT_FACTORY_TYPE_DECODABLE
GST_ELEMENT_FACTORY_TYPE_DECODER
GST_ELEMENT_FACTORY_TYPE_DEMUXER
GST_ELEMENT_FACTORY_TYPE_DEPAYLOADER
GST_ELEMENT_FACTORY_TYPE_ENCODER
GST_ELEMENT_FACTORY_TYPE_FORMATTER
GST_ELEMENT_FACTORY_TYPE_MAX_ELEMENTS
GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO
GST_ELEMENT_FACTORY_TYPE_MEDIA_IMAGE
GST_ELEMENT_FACTORY_TYPE_MEDIA_METADATA
GST_ELEMENT_FACTORY_TYPE_MEDIA_SUBTITLE
GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO
GST_ELEMENT_FACTORY_TYPE_MEDIA_ANY
GST_ELEMENT_FACTORY_TYPE_MUXER
GST_ELEMENT_FACTORY_TYPE_PARSER
GST_ELEMENT_FACTORY_TYPE_PAYLOADER
GST_ELEMENT_FACTORY_TYPE_SINK
GST_ELEMENT_FACTORY_TYPE_SRC
GST_ELEMENT_FACTORY_TYPE_VIDEO_ENCODER
gst_element_factory_list_filter
gst_element_factory_list_get_elements
gst_element_factory_list_is_type
<SUBSECTION Standard>
GstElementFactoryClass
GST_ELEMENT_FACTORY
GST_ELEMENT_FACTORY_CAST
GST_IS_ELEMENT_FACTORY
GST_ELEMENT_FACTORY_CLASS
GST_IS_ELEMENT_FACTORY_CLASS
GST_TYPE_ELEMENT_FACTORY
<SUBSECTION Private>
gst_element_factory_get_type
GST_ELEMENT_FACTORY_KLASS_DECODER
GST_ELEMENT_FACTORY_KLASS_DEMUXER
GST_ELEMENT_FACTORY_KLASS_DEPAYLOADER
GST_ELEMENT_FACTORY_KLASS_ENCODER
GST_ELEMENT_FACTORY_KLASS_FORMATTER
GST_ELEMENT_FACTORY_KLASS_MEDIA_AUDIO
GST_ELEMENT_FACTORY_KLASS_MEDIA_IMAGE
GST_ELEMENT_FACTORY_KLASS_MEDIA_METADATA
GST_ELEMENT_FACTORY_KLASS_MEDIA_SUBTITLE
GST_ELEMENT_FACTORY_KLASS_MEDIA_VIDEO
GST_ELEMENT_FACTORY_KLASS_MUXER
GST_ELEMENT_FACTORY_KLASS_PARSER
GST_ELEMENT_FACTORY_KLASS_PAYLOADER
GST_ELEMENT_FACTORY_KLASS_SINK
GST_ELEMENT_FACTORY_KLASS_SRC
</SECTION>


<SECTION>
<FILE>gsterror</FILE>
<TITLE>GstGError</TITLE>
GstCoreError
GstLibraryError
GstResourceError
GstStreamError
GST_CORE_ERROR
GST_LIBRARY_ERROR
GST_RESOURCE_ERROR
GST_STREAM_ERROR
GST_ERROR_SYSTEM
gst_error_get_message
<SUBSECTION Standard>
GST_TYPE_CORE_ERROR
GST_TYPE_LIBRARY_ERROR
GST_TYPE_RESOURCE_ERROR
GST_TYPE_STREAM_ERROR
<SUBSECTION Private>
gst_core_error_get_type
gst_library_error_get_type
gst_resource_error_get_type
gst_stream_error_get_type
gst_core_error_quark
gst_library_error_quark
gst_resource_error_quark
gst_stream_error_quark
</SECTION>


<SECTION>
<FILE>gstevent</FILE>
<TITLE>GstEvent</TITLE>
GstEvent

GstEventTypeFlags
GST_EVENT_TYPE_BOTH
GST_EVENT_MAKE_TYPE

GstEventType

GST_EVENT_TYPE
GST_EVENT_TYPE_NAME
GST_EVENT_TIMESTAMP
GST_EVENT_SEQNUM

GST_EVENT_IS_UPSTREAM
GST_EVENT_IS_DOWNSTREAM
GST_EVENT_IS_SERIALIZED
GST_EVENT_IS_STICKY

gst_event_type_get_flags
gst_event_type_get_name
gst_event_type_to_quark

gst_event_ref
gst_event_unref
gst_event_replace
gst_event_copy
gst_event_steal
gst_event_take

gst_event_is_writable
gst_event_make_writable
gst_event_writable_structure

gst_event_new_custom
gst_event_get_structure
gst_event_has_name

gst_event_get_seqnum
gst_event_set_seqnum

gst_event_new_flush_start
gst_event_new_flush_stop
gst_event_parse_flush_stop

gst_event_new_eos

gst_event_new_gap
gst_event_parse_gap

gst_event_new_stream_start
gst_event_parse_stream_start

gst_event_new_segment
gst_event_parse_segment
gst_event_copy_segment

gst_event_new_tag
gst_event_parse_tag

gst_event_new_buffer_size
gst_event_parse_buffer_size

GstQOSType
gst_event_new_qos
gst_event_parse_qos

GstSeekType
GstSeekFlags
gst_event_new_seek
gst_event_parse_seek

gst_event_new_navigation

gst_event_new_latency
gst_event_parse_latency

gst_event_new_step
gst_event_parse_step

gst_event_new_sink_message
gst_event_parse_sink_message

gst_event_new_reconfigure

gst_event_new_caps
gst_event_parse_caps

gst_event_new_toc
gst_event_parse_toc

gst_event_new_toc_select
gst_event_parse_toc_select

gst_event_new_segment_done
gst_event_parse_segment_done
<SUBSECTION Standard>
GstEventClass
GST_EVENT
GST_EVENT_CAST
GST_IS_EVENT
GST_IS_EVENT_CLASS
GST_EVENT_CLASS
GST_EVENT_GET_CLASS
GST_TYPE_EVENT
GST_TYPE_EVENT_TYPE
GST_TYPE_SEEK_TYPE
GST_TYPE_SEEK_FLAGS
GST_TYPE_QOS_TYPE
GST_TYPE_EVENT_TYPE_FLAGS
<SUBSECTION Private>
GST_EVENT_TYPE_SHIFT
GST_EVENT_MAX_STICKY
GST_EVENT_NUM_SHIFT
GST_EVENT_STICKY_IDX
GST_EVENT_STICKY_IDX_TYPE
GST_EVENT_STICKY_SHIFT
FLAG
gst_event_get_type
gst_event_type_get_type
gst_seek_type_get_type
gst_seek_flags_get_type
gst_qos_type_get_type
gst_event_type_flags_get_type
</SECTION>

<SECTION>
<FILE>gstformat</FILE>
<TITLE>GstFormat</TITLE>
GstFormat
GST_FORMAT_PERCENT_MAX
GST_FORMAT_PERCENT_SCALE
GstFormatDefinition

gst_format_get_name
gst_format_to_quark
gst_format_register
gst_format_get_by_nick
gst_formats_contains
gst_format_get_details
gst_format_iterate_definitions
<SUBSECTION Standard>
GST_TYPE_FORMAT
<SUBSECTION Private>
gst_format_get_type
</SECTION>


<SECTION>
<FILE>gstghostpad</FILE>
<TITLE>GstGhostPad</TITLE>
GstProxyPad
GstGhostPad

gst_ghost_pad_new
gst_ghost_pad_new_no_target
gst_ghost_pad_new_from_template
gst_ghost_pad_new_no_target_from_template

gst_ghost_pad_set_target
gst_ghost_pad_get_target

gst_ghost_pad_construct

gst_ghost_pad_activate_mode_default

gst_ghost_pad_internal_activate_mode_default

gst_proxy_pad_get_internal

gst_proxy_pad_iterate_internal_links_default
gst_proxy_pad_chain_default
gst_proxy_pad_chain_list_default
gst_proxy_pad_getrange_default
<SUBSECTION Standard>
GstGhostPadClass
GST_GHOST_PAD
GST_IS_GHOST_PAD
GST_GHOST_PAD_CLASS
GST_IS_GHOST_PAD_CLASS
GST_TYPE_GHOST_PAD
GST_GHOST_PAD_CAST
<SUBSECTION Private>
GST_IS_PROXY_PAD
GST_IS_PROXY_PAD_CLASS
GST_PROXY_PAD
GST_PROXY_PAD_CLASS
GST_TYPE_PROXY_PAD
GstGhostPadPrivate
GstProxyPadClass
GstProxyPadPrivate
gst_proxy_pad_get_type
gst_ghost_pad_get_type
</SECTION>


<SECTION>
<FILE>gstinfo</FILE>
<TITLE>GstInfo</TITLE>
GstDebugLevel
GST_LEVEL_DEFAULT
GstDebugColorFlags
GstDebugCategory
GstDebugGraphDetails
GST_STR_NULL
GST_DEBUG_PAD_NAME
GST_FUNCTION
GstLogFunction
gst_debug_log
gst_debug_log_valist
gst_debug_message_get
gst_debug_log_default
gst_debug_level_get_name
gst_debug_add_log_function
gst_debug_remove_log_function
gst_debug_remove_log_function_by_data
gst_debug_set_active
gst_debug_is_active
gst_debug_set_colored
gst_debug_is_colored
gst_debug_set_default_threshold
gst_debug_set_threshold_from_string
gst_debug_get_default_threshold
gst_debug_set_threshold_for_name
gst_debug_unset_threshold_for_name
GST_DEBUG_CATEGORY
GST_DEBUG_CATEGORY_EXTERN
GST_DEBUG_CATEGORY_STATIC
GST_DEBUG_CATEGORY_INIT
GST_DEBUG_CATEGORY_GET
gst_debug_category_free
gst_debug_category_set_threshold
gst_debug_category_reset_threshold
gst_debug_category_get_threshold
gst_debug_category_get_name
gst_debug_category_get_color
gst_debug_category_get_description
gst_debug_get_all_categories
gst_debug_construct_term_color
gst_debug_construct_win_color
GST_CAT_LEVEL_LOG
GST_CAT_ERROR_OBJECT
GST_CAT_WARNING_OBJECT
GST_CAT_INFO_OBJECT
GST_CAT_DEBUG_OBJECT
GST_CAT_LOG_OBJECT
GST_CAT_FIXME_OBJECT
GST_CAT_TRACE_OBJECT
GST_CAT_MEMDUMP_OBJECT
GST_CAT_ERROR
GST_CAT_WARNING
GST_CAT_INFO
GST_CAT_DEBUG
GST_CAT_LOG
GST_CAT_FIXME
GST_CAT_TRACE
GST_CAT_MEMDUMP
GST_ERROR_OBJECT
GST_WARNING_OBJECT
GST_INFO_OBJECT
GST_DEBUG_OBJECT
GST_LOG_OBJECT
GST_FIXME_OBJECT
GST_TRACE_OBJECT
GST_MEMDUMP_OBJECT
GST_ERROR
GST_WARNING
GST_INFO
GST_DEBUG
GST_LOG
GST_FIXME
GST_TRACE
GST_MEMDUMP
GST_DEBUG_REGISTER_FUNCPTR
GST_DEBUG_FUNCPTR
GST_DEBUG_FUNCPTR_NAME
GST_DEBUG_BIN_TO_DOT_FILE
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS
gst_debug_print_stack_trace
GST_TIME_FORMAT
GST_TIME_ARGS
gst_debug_bin_to_dot_file
gst_debug_bin_to_dot_file_with_ts
<SUBSECTION Standard>
GST_TYPE_DEBUG_COLOR_FLAGS
GST_TYPE_DEBUG_LEVEL
GST_TYPE_DEBUG_GRAPH_DETAILS
<SUBSECTION Private>
GST_DEBUG_FG_MASK
GST_DEBUG_BG_MASK
GST_DEBUG_FORMAT_MASK
GstDebugFuncPtr
GstDebugMessage
gst_debug_color_flags_get_type
gst_debug_level_get_type
gst_debug_graph_details_get_type
GST_CAT_LEVEL_LOG_valist
</SECTION>

<SECTION>
<FILE>gstiterator</FILE>
<TITLE>GstIterator</TITLE>
GstIterator

GstIteratorItem
GstIteratorResult

GstIteratorCopyFunction
GstIteratorNextFunction
GstIteratorItemFunction
GstIteratorResyncFunction
GstIteratorFreeFunction
GstIteratorForeachFunction
GstIteratorFoldFunction

GST_ITERATOR
GST_ITERATOR_LOCK
GST_ITERATOR_COOKIE
GST_ITERATOR_ORIG_COOKIE

gst_iterator_new
gst_iterator_new_list
gst_iterator_new_single

gst_iterator_copy
gst_iterator_free

gst_iterator_next
gst_iterator_resync
gst_iterator_push
gst_iterator_filter
gst_iterator_fold
gst_iterator_foreach
gst_iterator_find_custom

<SUBSECTION Standard>
GST_TYPE_ITERATOR
GST_TYPE_ITERATOR_ITEM
GST_TYPE_ITERATOR_RESULT
<SUBSECTION Private>
gst_iterator_get_type
gst_iterator_item_get_type
gst_iterator_result_get_type
</SECTION>

<SECTION>
<FILE>gstallocator</FILE>
<TITLE>GstAllocator</TITLE>
gst_memory_alignment

GstAllocator
GstAllocatorFlags
GstAllocationParams

GST_ALLOCATOR_SYSMEM
gst_allocator_find
gst_allocator_register
gst_allocator_set_default

gst_allocation_params_init
gst_allocation_params_copy
gst_allocation_params_free

gst_allocator_alloc
gst_allocator_free

gst_memory_new_wrapped

<SUBSECTION Standard>
GST_ALLOCATOR
GST_ALLOCATOR_CAST
GST_ALLOCATOR_CLASS
GST_ALLOCATOR_GET_CLASS
GST_IS_ALLOCATOR
GST_IS_ALLOCATOR_CLASS
GstAllocatorClass
<SUBSECTION Private>
GST_TYPE_ALLOCATOR_FLAGS
GstAllocatorPrivate
GST_TYPE_ALLOCATION_PARAMS
gst_allocation_params_get_type
GST_TYPE_ALLOCATOR
gst_allocator_get_type
gst_allocator_flags_get_type
</SECTION>

<SECTION>
<FILE>gstmemory</FILE>
<TITLE>GstMemory</TITLE>

GstMemoryFlags
GST_MEMORY_FLAGS
GST_MEMORY_FLAG_IS_SET
GST_MEMORY_FLAG_UNSET
GST_MEMORY_IS_READONLY
GST_MEMORY_IS_NO_SHARE
GST_MEMORY_IS_ZERO_PADDED
GST_MEMORY_IS_ZERO_PREFIXED
GST_MEMORY_IS_PHYSICALLY_CONTIGUOUS
GST_MEMORY_IS_NOT_MAPPABLE

GstMemory

GstMapFlags
GST_MAP_READWRITE

GstMapInfo
GST_MAP_INFO_INIT

GstMemoryMapFunction
GstMemoryUnmapFunction
GstMemoryCopyFunction
GstMemoryShareFunction
GstMemoryIsSpanFunction

gst_memory_init

gst_memory_is_type

gst_memory_ref
gst_memory_unref

gst_memory_get_sizes
gst_memory_resize

gst_memory_lock
gst_memory_unlock
gst_memory_is_writable
gst_memory_make_writable

gst_memory_make_mapped
gst_memory_map
gst_memory_unmap

gst_memory_copy
gst_memory_share

gst_memory_is_span
<SUBSECTION Standard>
GST_TYPE_MEMORY
gst_memory_get_type
GST_MEMORY_CAST
GST_TYPE_LOCK_FLAGS
gst_lock_flags_get_type
GST_TYPE_MAP_FLAGS
gst_map_flags_get_type
GST_TYPE_MEMORY_FLAGS
gst_memory_flags_get_type
</SECTION>

<SECTION>
<FILE>gstmessage</FILE>
<TITLE>GstMessage</TITLE>
GstMessage
GstMessageType
GST_MESSAGE_SRC
GST_MESSAGE_SRC_NAME
GST_MESSAGE_TIMESTAMP
GST_MESSAGE_SEQNUM
GST_MESSAGE_TYPE
GST_MESSAGE_TYPE_NAME
gst_message_type_to_quark
gst_message_type_get_name
gst_message_ref
gst_message_unref
gst_message_copy
gst_message_get_structure
gst_message_make_writable
gst_message_get_seqnum
gst_message_set_seqnum
gst_message_has_name
gst_message_is_writable
gst_message_replace

gst_message_new_eos
gst_message_new_error
gst_message_parse_error
gst_message_new_warning
gst_message_parse_warning
gst_message_new_info
gst_message_parse_info
gst_message_new_tag
gst_message_parse_tag
gst_message_new_buffering
gst_message_parse_buffering
gst_message_set_buffering_stats
gst_message_parse_buffering_stats
gst_message_new_state_changed
gst_message_parse_state_changed
gst_message_new_state_dirty
gst_message_new_step_done
gst_message_parse_step_done
gst_message_new_clock_provide
gst_message_parse_clock_provide
gst_message_new_clock_lost
gst_message_parse_clock_lost
gst_message_new_new_clock
gst_message_parse_new_clock
gst_message_new_application
gst_message_new_element
gst_message_new_custom
gst_message_new_segment_start
gst_message_parse_segment_start
gst_message_new_segment_done
gst_message_parse_segment_done
gst_message_new_duration_changed
gst_message_new_latency
gst_message_new_async_start
gst_message_new_async_done
gst_message_parse_async_done
gst_message_new_step_start
gst_message_parse_step_start
gst_message_new_qos
gst_message_set_qos_values
gst_message_set_qos_stats
gst_message_parse_qos
gst_message_parse_qos_values
gst_message_parse_qos_stats
gst_message_new_toc
gst_message_parse_toc
gst_message_new_reset_time
gst_message_parse_reset_time
gst_message_new_stream_start

GstStructureChangeType
gst_message_new_structure_change
gst_message_parse_structure_change
gst_message_new_request_state
gst_message_parse_request_state

GstStreamStatusType
gst_message_new_stream_status
gst_message_parse_stream_status
gst_message_set_stream_status_object
gst_message_get_stream_status_object

GstProgressType
gst_message_new_progress
gst_message_parse_progress

<SUBSECTION Standard>
GstMessageClass
GST_MESSAGE
GST_MESSAGE_CAST
GST_IS_MESSAGE
GST_TYPE_MESSAGE
GST_MESSAGE_CLASS
GST_IS_MESSAGE_CLASS
GST_MESSAGE_GET_CLASS
GST_TYPE_MESSAGE_TYPE
GST_TYPE_STRUCTURE_CHANGE_TYPE
GST_TYPE_STREAM_STATUS_TYPE
GST_TYPE_PROGRESS_TYPE
<SUBSECTION Private>
gst_message_get_type
gst_message_type_get_type
gst_structure_change_type_get_type
gst_stream_status_type_get_type
gst_progress_type_get_type
GST_MESSAGE_GET_COND
GST_MESSAGE_GET_LOCK
GST_MESSAGE_LOCK
GST_MESSAGE_SIGNAL
GST_MESSAGE_UNLOCK
GST_MESSAGE_WAIT
</SECTION>


<SECTION>
<FILE>gstminiobject</FILE>
<TITLE>GstMiniObject</TITLE>
GstMiniObject
GstMiniObjectCopyFunction
GstMiniObjectDisposeFunction
GstMiniObjectFreeFunction
GstMiniObjectNotify

GST_MINI_OBJECT_TYPE

GstMiniObjectFlags
GST_MINI_OBJECT_FLAGS
GST_MINI_OBJECT_FLAG_IS_SET
GST_MINI_OBJECT_FLAG_SET
GST_MINI_OBJECT_FLAG_UNSET
GST_MINI_OBJECT_IS_LOCKABLE

GstLockFlags
GST_LOCK_FLAG_READWRITE

GST_MINI_OBJECT_REFCOUNT
GST_MINI_OBJECT_REFCOUNT_VALUE

GST_DEFINE_MINI_OBJECT_TYPE
gst_mini_object_init

gst_mini_object_ref
gst_mini_object_unref

gst_mini_object_weak_ref
gst_mini_object_weak_unref

gst_mini_object_lock
gst_mini_object_unlock
gst_mini_object_is_writable
gst_mini_object_make_writable

gst_mini_object_copy

gst_mini_object_set_qdata
gst_mini_object_get_qdata
gst_mini_object_steal_qdata

gst_mini_object_replace
gst_mini_object_take
gst_mini_object_steal

<SUBSECTION Standard>
GST_MINI_OBJECT
GST_IS_MINI_OBJECT_TYPE
GST_TYPE_MINI_OBJECT_FLAGS
GST_MINI_OBJECT_CAST
GST_MINI_OBJECT_CONST_CAST

<SUBSECTION Private>
gst_mini_object_flags_get_type
</SECTION>


<SECTION>
<FILE>gstobject</FILE>
<TITLE>GstObject</TITLE>
GstObject
GstObjectClass
GstObjectFlags
GST_OBJECT_FLAGS
GST_OBJECT_FLAG_IS_SET
GST_OBJECT_FLAG_SET
GST_OBJECT_FLAG_UNSET
GST_OBJECT_NAME
GST_OBJECT_PARENT
GST_OBJECT_REFCOUNT
GST_OBJECT_REFCOUNT_VALUE
GST_OBJECT_LOCK
GST_OBJECT_TRYLOCK
GST_OBJECT_UNLOCK
GST_OBJECT_GET_LOCK

gst_object_set_name
gst_object_get_name
gst_object_set_parent
gst_object_get_parent
gst_object_unparent
gst_object_default_deep_notify
gst_object_default_error
gst_object_check_uniqueness
gst_object_has_ancestor
gst_object_ref
gst_object_unref
gst_object_ref_sink
gst_object_replace
gst_object_get_path_string

gst_object_suggest_next_sync
gst_object_sync_values
gst_object_has_active_control_bindings
gst_object_set_control_bindings_disabled
gst_object_set_control_binding_disabled
gst_object_add_control_binding
gst_object_get_control_binding
gst_object_remove_control_binding
gst_object_get_value
gst_object_get_value_array
gst_object_get_g_value_array
gst_object_get_control_rate
gst_object_set_control_rate

<SUBSECTION Standard>
GST_OBJECT
GST_IS_OBJECT
GST_OBJECT_CLASS
GST_IS_OBJECT_CLASS
GST_OBJECT_GET_CLASS
GST_TYPE_OBJECT
GST_TYPE_OBJECT_FLAGS
GST_OBJECT_CAST
GST_OBJECT_CLASS_CAST
<SUBSECTION Private>
gst_object_get_type
gst_object_flags_get_type
</SECTION>


<SECTION>
<FILE>gstpad</FILE>
<TITLE>GstPad</TITLE>
GstPad

GstPadDirection
GstPadFlags
GstPadLinkReturn
GST_PAD_LINK_FAILED
GST_PAD_LINK_SUCCESSFUL
GstPadLinkCheck
GstFlowReturn
gst_flow_get_name
gst_flow_to_quark
GstPadMode
gst_pad_mode_get_name

<SUBSECTION Application>
gst_pad_get_name
gst_pad_get_direction
gst_pad_get_parent
gst_pad_get_parent_element
gst_pad_get_pad_template

gst_pad_link
gst_pad_link_full
gst_pad_unlink
gst_pad_is_linked
gst_pad_can_link

gst_pad_get_allowed_caps
gst_pad_get_current_caps
gst_pad_get_pad_template_caps

gst_pad_get_peer
gst_pad_use_fixed_caps
gst_pad_has_current_caps

gst_pad_get_sticky_event
GstPadStickyEventsForeachFunction
gst_pad_sticky_events_foreach

gst_pad_is_active

<SUBSECTION probes>
GstPadProbeReturn
GstPadProbeType

GstPadProbeInfo
GST_PAD_PROBE_INFO_TYPE
GST_PAD_PROBE_INFO_ID
GST_PAD_PROBE_INFO_DATA

GST_PAD_PROBE_INFO_BUFFER
GST_PAD_PROBE_INFO_BUFFER_LIST
GST_PAD_PROBE_INFO_EVENT
GST_PAD_PROBE_INFO_QUERY

gst_pad_probe_info_get_buffer
gst_pad_probe_info_get_buffer_list
gst_pad_probe_info_get_event
gst_pad_probe_info_get_query

GST_PAD_PROBE_INFO_OFFSET
GST_PAD_PROBE_INFO_SIZE

GstPadProbeCallback
gst_pad_add_probe
gst_pad_remove_probe

gst_pad_is_blocked
gst_pad_is_blocking

<SUBSECTION offset>
gst_pad_get_offset
gst_pad_set_offset

<SUBSECTION Element>
gst_pad_new
gst_pad_new_from_template
gst_pad_new_from_static_template

gst_pad_set_chain_function
gst_pad_set_chain_function_full
GstPadChainFunction

gst_pad_set_chain_list_function
gst_pad_set_chain_list_function_full
GstPadChainListFunction

gst_pad_get_range
gst_pad_set_getrange_function
gst_pad_set_getrange_function_full
GstPadGetRangeFunction

gst_pad_set_event_function
gst_pad_set_event_function_full
GstPadEventFunction

gst_pad_set_link_function
gst_pad_set_link_function_full
GstPadLinkFunction
gst_pad_set_unlink_function
gst_pad_set_unlink_function_full
GstPadUnlinkFunction

gst_pad_proxy_query_caps
gst_pad_proxy_query_accept_caps

gst_pad_set_activate_function
gst_pad_set_activate_function_full
GstPadActivateFunction

gst_pad_set_activatemode_function
gst_pad_set_activatemode_function_full
GstPadActivateModeFunction

gst_pad_needs_reconfigure
gst_pad_check_reconfigure
gst_pad_mark_reconfigure

gst_pad_push
gst_pad_push_event
gst_pad_push_list
gst_pad_pull_range
gst_pad_activate_mode
gst_pad_send_event
gst_pad_event_default

gst_pad_query
gst_pad_peer_query

gst_pad_query_default

gst_pad_query_position
gst_pad_query_duration
gst_pad_query_convert
gst_pad_query_accept_caps
gst_pad_query_caps

gst_pad_peer_query_position
gst_pad_peer_query_duration
gst_pad_peer_query_convert
gst_pad_peer_query_accept_caps
gst_pad_peer_query_caps

gst_pad_set_query_function
gst_pad_set_query_function_full
GstPadQueryFunction
gst_pad_set_iterate_internal_links_function
gst_pad_set_iterate_internal_links_function_full
GstPadIterIntLinkFunction
gst_pad_iterate_internal_links
gst_pad_iterate_internal_links_default

gst_pad_set_element_private
gst_pad_get_element_private

gst_pad_create_stream_id
gst_pad_create_stream_id_printf
gst_pad_create_stream_id_printf_valist

gst_pad_get_stream_id

GstPadForwardFunction
gst_pad_forward
<SUBSECTION Core>
gst_pad_chain
gst_pad_chain_list

gst_pad_start_task
gst_pad_pause_task
gst_pad_stop_task

gst_pad_set_active

GST_PAD_GET_STREAM_LOCK
GST_PAD_STREAM_LOCK
GST_PAD_STREAM_TRYLOCK
GST_PAD_STREAM_UNLOCK

<SUBSECTION Standard>
GstPadClass
GstPadPrivate
GST_PAD
GST_IS_PAD
GST_PAD_CLASS
GST_IS_PAD_CLASS
GST_TYPE_PAD
GST_TYPE_PAD_DIRECTION
GST_TYPE_PAD_FLAGS
GST_TYPE_PAD_LINK_RETURN
GST_TYPE_PAD_LINK_CHECK
GST_TYPE_PAD_PRESENCE
GST_TYPE_PAD_MODE
GST_TYPE_FLOW_RETURN
GST_TYPE_PAD_PROBE_RETURN
GST_TYPE_PAD_PROBE_TYPE

<SUBSECTION Private>
gst_pad_get_type
gst_pad_direction_get_type
gst_pad_flags_get_type
gst_pad_link_return_get_type
gst_pad_link_check_get_type
gst_pad_presence_get_type
gst_flow_return_get_type
gst_pad_mode_get_type
gst_pad_probe_return_get_type
gst_pad_probe_type_get_type

GST_PAD_NAME
GST_PAD_PARENT
GST_PAD_ELEMENT_PRIVATE
GST_PAD_PAD_TEMPLATE
GST_PAD_DIRECTION
GST_PAD_PEER
GST_PAD_IS_LINKED
GST_PAD_IS_SRC
GST_PAD_IS_SINK
GST_PAD_IS_FIXED_CAPS
GST_PAD_NEEDS_RECONFIGURE
GST_PAD_HAS_PENDING_EVENTS
GST_PAD_IS_PROXY_ALLOCATION
GST_PAD_IS_PROXY_CAPS
GST_PAD_IS_PROXY_SCHEDULING
GST_PAD_NEEDS_PARENT
GST_PAD_SET_PROXY_ALLOCATION
GST_PAD_UNSET_PROXY_ALLOCATION
GST_PAD_SET_PROXY_CAPS
GST_PAD_UNSET_PROXY_CAPS
GST_PAD_SET_PROXY_SCHEDULING
GST_PAD_UNSET_PROXY_SCHEDULING

GST_PAD_IS_IN_GETCAPS
GST_PAD_MODE_ACTIVATE
GST_PAD_BLOCK_BROADCAST
GST_PAD_BLOCK_GET_COND
GST_PAD_BLOCK_SIGNAL
GST_PAD_BLOCK_WAIT
GST_PAD_CAST
GST_PAD_MODE
GST_PAD_DO_BUFFER_SIGNALS
GST_PAD_DO_EVENT_SIGNALS
GST_PAD_IS_BLOCKED
GST_PAD_IS_BLOCKING
GST_PAD_IS_IN_SETCAPS
GST_PAD_SET_FLUSHING
GST_PAD_TASK
GST_PAD_UNSET_FLUSHING

GST_PAD_IS_ACTIVE
GST_PAD_ACTIVATEFUNC
GST_PAD_ACTIVATEMODEFUNC

GST_PAD_CHAINFUNC
GST_PAD_CHAINLISTFUNC
GST_PAD_EVENTFUNC
GST_PAD_GETRANGEFUNC
GST_PAD_ITERINTLINKFUNC
GST_PAD_IS_FLUSHING
GST_PAD_IS_EOS
GST_PAD_LINKFUNC
GST_PAD_UNLINKFUNC
GST_PAD_QUERYFUNC
GST_PAD_QUERYTYPEFUNC
</SECTION>


<SECTION>
<FILE>gstpadtemplate</FILE>
<TITLE>GstPadTemplate</TITLE>
GstStaticPadTemplate
GST_STATIC_PAD_TEMPLATE
gst_static_pad_template_get
gst_static_pad_template_get_caps
GstPadTemplate
GstPadTemplateFlags
GstPadPresence
GST_PAD_TEMPLATE_NAME_TEMPLATE
GST_PAD_TEMPLATE_DIRECTION
GST_PAD_TEMPLATE_PRESENCE
GST_PAD_TEMPLATE_CAPS
GST_PAD_TEMPLATE_IS_FIXED
gst_pad_template_new
gst_pad_template_get_caps

<SUBSECTION Standard>
GstPadTemplateClass
GST_PAD_TEMPLATE
GST_IS_PAD_TEMPLATE
GST_PAD_TEMPLATE_CLASS
GST_IS_PAD_TEMPLATE_CLASS
GST_TYPE_PAD_TEMPLATE
GST_TYPE_PAD_TEMPLATE_FLAGS
GST_TYPE_STATIC_CAPS
GST_TYPE_STATIC_PAD_TEMPLATE

<SUBSECTION Private>
gst_pad_template_get_type
gst_pad_template_flags_get_type
gst_pad_template_pad_created
gst_static_pad_template_get_type
gst_static_caps_get_type

</SECTION>


<SECTION>
<FILE>gstparamspec</FILE>
<TITLE>GstParamSpec</TITLE>

GST_PARAM_CONTROLLABLE
GST_PARAM_USER_SHIFT
GST_PARAM_MUTABLE_PAUSED
GST_PARAM_MUTABLE_PLAYING
GST_PARAM_MUTABLE_READY

<SUBSECTION paramspecfraction>
GstParamSpecFraction
gst_param_spec_fraction

<SUBSECTION Standard>
GST_IS_PARAM_SPEC_FRACTION
GST_PARAM_SPEC_FRACTION
GST_TYPE_PARAM_FRACTION
gst_param_spec_fraction_get_type

</SECTION>


<SECTION>
<FILE>gstparse</FILE>
<TITLE>GstParse</TITLE>
gst_parse_error_quark
GST_PARSE_ERROR
GstParseError
GstParseContext
GstParseFlags
gst_parse_launch
gst_parse_launch_full
gst_parse_launchv
gst_parse_launchv_full
gst_parse_bin_from_description
gst_parse_bin_from_description_full
<SUBSECTION>
gst_parse_context_new
gst_parse_context_free
gst_parse_context_get_missing_elements
<SUBSECTION Standard>
GST_TYPE_PARSE_ERROR
GST_TYPE_PARSE_FLAGS
GST_TYPE_PARSE_CONTEXT
<SUBSECTION Private>
gst_parse_context_get_type
gst_parse_error_get_type
gst_parse_flags_get_type
</SECTION>


<SECTION>
<FILE>gstpipeline</FILE>
<TITLE>GstPipeline</TITLE>
GstPipeline
GstPipelineFlags

gst_pipeline_new

gst_pipeline_get_bus

gst_pipeline_set_clock
gst_pipeline_get_clock

gst_pipeline_use_clock
gst_pipeline_auto_clock

gst_pipeline_set_auto_flush_bus
gst_pipeline_get_auto_flush_bus

gst_pipeline_set_delay
gst_pipeline_get_delay

<SUBSECTION Standard>
GstPipelineClass
GST_PIPELINE
GST_IS_PIPELINE
GST_PIPELINE_CLASS
GST_IS_PIPELINE_CLASS
GST_PIPELINE_GET_CLASS
GST_TYPE_PIPELINE
GST_TYPE_PIPELINE_FLAGS
GST_PIPELINE_CAST
<SUBSECTION Private>
GstPipelinePrivate
gst_pipeline_get_type
gst_pipeline_flags_get_type
</SECTION>


<SECTION>
<FILE>gstplugin</FILE>
<TITLE>GstPlugin</TITLE>
gst_plugin_error_quark
GST_PLUGIN_ERROR
GstPluginError
GstPlugin
GstPluginDesc
GstPluginInitFunc
GstPluginInitFullFunc
GST_PLUGIN_DEFINE
GST_LICENSE_UNKNOWN
GstPluginFilter
gst_plugin_get_name
gst_plugin_get_description
gst_plugin_get_filename
gst_plugin_get_license
gst_plugin_get_package
gst_plugin_get_origin
gst_plugin_get_source
gst_plugin_get_version
gst_plugin_get_release_date_string
gst_plugin_is_loaded
gst_plugin_get_cache_data
gst_plugin_set_cache_data
gst_plugin_load_file
gst_plugin_load
gst_plugin_load_by_name
gst_plugin_list_free
gst_plugin_register_static
gst_plugin_register_static_full
<SUBSECTION>
GstPluginFlags
GstPluginDependencyFlags
gst_plugin_add_dependency
gst_plugin_add_dependency_simple
<SUBSECTION Standard>
GstPluginClass
GST_PLUGIN
GST_PLUGIN_CAST
GST_PLUGIN_CLASS
GST_PLUGIN_GET_CLASS
GST_TYPE_PLUGIN
GST_TYPE_PLUGIN_ERROR
GST_IS_PLUGIN
GST_IS_PLUGIN_CLASS
GST_TYPE_PLUGIN_FLAGS
GST_TYPE_PLUGIN_DEPENDENCY_FLAGS
GstPluginPrivate
gst_plugin_dependency_flags_get_type
<SUBSECTION Private>
gst_plugin_get_type
<SUBSECTION Private>
gst_plugin_error_get_type
gst_plugin_flags_get_type
</SECTION>


<SECTION>
<FILE>gstpluginfeature</FILE>
<TITLE>GstPluginFeature</TITLE>
GstPluginFeature
GstPluginFeatureFilter
GstRank

gst_plugin_feature_set_rank
gst_plugin_feature_set_name
gst_plugin_feature_get_rank
gst_plugin_feature_get_name
gst_plugin_feature_get_plugin
gst_plugin_feature_get_plugin_name
gst_plugin_feature_load
gst_plugin_feature_list_copy
gst_plugin_feature_list_free
GST_PLUGIN_FEATURE_LIST_DEBUG
gst_plugin_feature_check_version
gst_plugin_feature_rank_compare_func
<SUBSECTION Standard>
GstPluginFeatureClass
GST_PLUGIN_FEATURE
GST_PLUGIN_FEATURE_CAST
GST_IS_PLUGIN_FEATURE
GST_PLUGIN_FEATURE_CLASS
GST_IS_PLUGIN_FEATURE_CLASS
GST_PLUGIN_FEATURE_GET_CLASS
GST_TYPE_PLUGIN_FEATURE
GST_TYPE_RANK
<SUBSECTION Private>
gst_plugin_feature_get_type
gst_plugin_feature_list_debug
gst_rank_get_type
</SECTION>


<SECTION>
<FILE>gstpoll</FILE>
<TITLE>GstPoll</TITLE>
GstPoll
GstPollFD
GST_POLL_FD_INIT
gst_poll_add_fd
gst_poll_fd_can_read
gst_poll_fd_can_write
gst_poll_fd_ctl_read
gst_poll_fd_ctl_write
gst_poll_fd_has_closed
gst_poll_fd_has_error
gst_poll_fd_ignored
gst_poll_fd_init
gst_poll_free
gst_poll_new
gst_poll_new_timer
gst_poll_get_read_gpollfd
gst_poll_remove_fd
gst_poll_restart
gst_poll_set_controllable
gst_poll_set_flushing
gst_poll_wait
gst_poll_read_control
gst_poll_write_control
</SECTION>

<SECTION>
<FILE>gstpreset</FILE>
<TITLE>GstPreset</TITLE>
GstPreset
GstPresetInterface
gst_preset_get_preset_names
gst_preset_get_property_names
gst_preset_load_preset
gst_preset_save_preset
gst_preset_rename_preset
gst_preset_delete_preset
gst_preset_set_meta
gst_preset_get_meta
gst_preset_set_app_dir
gst_preset_get_app_dir
<SUBSECTION Standard>
GST_PRESET
GST_IS_PRESET
GST_TYPE_PRESET
GST_PRESET_GET_INTERFACE
gst_preset_get_type
</SECTION>

<SECTION>
<FILE>gstquery</FILE>
<TITLE>GstQuery</TITLE>
GstQuery

GstQueryTypeFlags
GST_QUERY_TYPE_BOTH
GST_QUERY_MAKE_TYPE

GstQueryType

GST_QUERY_TYPE
GST_QUERY_TYPE_NAME

GST_QUERY_IS_UPSTREAM
GST_QUERY_IS_DOWNSTREAM
GST_QUERY_IS_SERIALIZED

gst_query_type_get_flags
gst_query_type_get_name
gst_query_type_to_quark

gst_query_ref
gst_query_unref
gst_query_copy
gst_query_make_writable
gst_query_is_writable
gst_query_replace
gst_query_writable_structure

gst_query_new_custom
gst_query_get_structure

gst_query_new_convert
gst_query_set_convert
gst_query_parse_convert

gst_query_new_position
gst_query_set_position
gst_query_parse_position

gst_query_new_duration
gst_query_set_duration
gst_query_parse_duration

gst_query_new_latency
gst_query_parse_latency
gst_query_set_latency

gst_query_new_seeking
gst_query_set_seeking
gst_query_parse_seeking

gst_query_new_formats
gst_query_set_formats
gst_query_set_formatsv
gst_query_parse_n_formats
gst_query_parse_nth_format

gst_query_new_segment
gst_query_set_segment
gst_query_parse_segment

gst_query_new_caps
gst_query_parse_caps
gst_query_set_caps_result
gst_query_parse_caps_result

gst_query_new_accept_caps
gst_query_parse_accept_caps
gst_query_set_accept_caps_result
gst_query_parse_accept_caps_result

GstBufferingMode
gst_query_new_buffering
gst_query_set_buffering_percent
gst_query_parse_buffering_percent
gst_query_set_buffering_stats
gst_query_parse_buffering_stats
gst_query_set_buffering_range
gst_query_parse_buffering_range
gst_query_add_buffering_range
gst_query_get_n_buffering_ranges
gst_query_parse_nth_buffering_range

gst_query_new_uri
gst_query_parse_uri
gst_query_set_uri

gst_query_new_allocation
gst_query_parse_allocation

gst_query_add_allocation_pool
gst_query_get_n_allocation_pools
gst_query_parse_nth_allocation_pool
gst_query_set_nth_allocation_pool
gst_query_remove_nth_allocation_pool

gst_query_add_allocation_param
gst_query_get_n_allocation_params
gst_query_parse_nth_allocation_param
gst_query_set_nth_allocation_param
gst_query_remove_nth_allocation_param

gst_query_add_allocation_meta
gst_query_get_n_allocation_metas
gst_query_parse_nth_allocation_meta
gst_query_remove_nth_allocation_meta
gst_query_find_allocation_meta

GstSchedulingFlags
gst_query_new_scheduling
gst_query_parse_scheduling
gst_query_set_scheduling
gst_query_add_scheduling_mode
gst_query_get_n_scheduling_modes
gst_query_parse_nth_scheduling_mode
gst_query_has_scheduling_mode
gst_query_has_scheduling_mode_with_flags

gst_query_new_drain
<SUBSECTION Standard>
GstQueryClass
GST_QUERY
GST_QUERY_CAST
GST_IS_QUERY
GST_QUERY_CLASS
GST_IS_QUERY_CLASS
GST_TYPE_QUERY
GST_TYPE_QUERY_TYPE
GST_QUERY_GET_CLASS
GST_TYPE_QUERY_TYPE_FLAGS
gst_query_type_flags_get_type
GST_TYPE_BUFFERING_MODE
gst_buffering_mode_get_type
GST_TYPE_SCHEDULING_FLAGS
gst_scheduling_flags_get_type
<SUBSECTION Private>
GST_QUERY_NUM_SHIFT
gst_query_get_type
gst_query_type_get_type
</SECTION>


<SECTION>
<FILE>gstregistry</FILE>
<TITLE>GstRegistry</TITLE>
GstRegistry
gst_registry_get
gst_registry_get_feature_list
gst_registry_get_feature_list_cookie
gst_registry_get_feature_list_by_plugin
gst_registry_get_plugin_list
gst_registry_add_plugin
gst_registry_remove_plugin
gst_registry_plugin_filter
gst_registry_feature_filter
gst_registry_find_plugin
gst_registry_find_feature
gst_registry_lookup_feature
gst_registry_scan_path
gst_registry_lookup
gst_registry_remove_feature
gst_registry_add_feature
gst_registry_check_feature_version
<SUBSECTION Standard>
GstRegistryClass
GST_REGISTRY
GST_IS_REGISTRY
GST_REGISTRY_CLASS
GST_IS_REGISTRY_CLASS
GST_REGISTRY_GET_CLASS
GST_TYPE_REGISTRY
<SUBSECTION Private>
GST_MAGIC_BINARY_REGISTRY_LEN
GST_MAGIC_BINARY_REGISTRY_STR
GST_MAGIC_BINARY_VERSION_STR
GST_MAGIC_BINARY_VERSION_LEN
gst_registry_get_type
GstRegistryPrivate
</SECTION>


<SECTION>
<FILE>gstsegment</FILE>
<TITLE>GstSegment</TITLE>
GstSegment
GstSegmentFlags
gst_segment_clip
gst_segment_init
gst_segment_new
gst_segment_copy
gst_segment_free
gst_segment_do_seek
gst_segment_to_running_time
gst_segment_to_stream_time
gst_segment_to_position
gst_segment_set_running_time
gst_segment_copy_into
<SUBSECTION Standard>
GST_TYPE_SEGMENT
GST_TYPE_SEGMENT_FLAGS
gst_segment_get_type
gst_segment_flags_get_type
<SUBSECTION Private>
</SECTION>


<SECTION>
<FILE>gststructure</FILE>
<TITLE>GstStructure</TITLE>
GstStructure
GstStructureForeachFunc
GstStructureMapFunc
gst_structure_new_empty
gst_structure_new_id_empty
gst_structure_new
gst_structure_new_valist
gst_structure_new_id
gst_structure_copy
gst_structure_free
gst_structure_get_name
gst_structure_has_name
gst_structure_set_name
gst_structure_get_name_id
gst_structure_id_get
gst_structure_id_get_valist
gst_structure_id_get_value
gst_structure_id_set_value
gst_structure_id_take_value
gst_structure_get
gst_structure_get_valist
gst_structure_get_value
gst_structure_set_value
gst_structure_take_value
gst_structure_set
gst_structure_set_valist
gst_structure_id_set
gst_structure_id_set_valist
gst_structure_remove_field
gst_structure_remove_fields
gst_structure_remove_fields_valist
gst_structure_remove_all_fields
gst_structure_get_field_type
gst_structure_foreach
gst_structure_n_fields
gst_structure_has_field
gst_structure_has_field_typed
gst_structure_is_equal
gst_structure_is_subset
gst_structure_can_intersect
gst_structure_intersect
gst_structure_id_has_field
gst_structure_id_has_field_typed
gst_structure_get_boolean
gst_structure_get_int
gst_structure_get_uint
gst_structure_get_double
gst_structure_get_string
gst_structure_get_date
gst_structure_get_date_time
gst_structure_get_clock_time
gst_structure_get_enum
gst_structure_get_fraction
gst_structure_map_in_place
gst_structure_nth_field_name
gst_structure_set_parent_refcount
gst_structure_to_string
gst_structure_from_string
gst_structure_fixate
gst_structure_fixate_field
gst_structure_fixate_field_nearest_int
gst_structure_fixate_field_nearest_double
gst_structure_fixate_field_nearest_fraction
gst_structure_fixate_field_boolean
gst_structure_fixate_field_string
<SUBSECTION Standard>
GST_STRUCTURE
GST_STRUCTURE_CAST
GST_IS_STRUCTURE
GST_TYPE_STRUCTURE
<SUBSECTION Private>
gst_structure_get_type
</SECTION>

<SECTION>
<FILE>gstsystemclock</FILE>
<TITLE>GstSystemClock</TITLE>
GstClockType
GstSystemClock
gst_system_clock_obtain
<SUBSECTION Standard>
GstSystemClockClass
GstSystemClockPrivate
GST_SYSTEM_CLOCK
GST_IS_SYSTEM_CLOCK
gst_system_clock_get_type
GST_SYSTEM_CLOCK_CLASS
GST_IS_SYSTEM_CLOCK_CLASS
GST_SYSTEM_CLOCK_GET_CLASS
GST_TYPE_SYSTEM_CLOCK
GST_SYSTEM_CLOCK_CAST
GST_TYPE_CLOCK_TYPE
gst_clock_type_get_type
</SECTION>

<SECTION>
<FILE>gsttaglist</FILE>
<TITLE>GstTagList</TITLE>
GstTagList
GstTagMergeMode
GstTagFlag
GstTagForeachFunc
GstTagMergeFunc

GstTagScope

GST_TAG_TITLE
GST_TAG_TITLE_SORTNAME
GST_TAG_ARTIST
GST_TAG_ARTIST_SORTNAME
GST_TAG_ALBUM
GST_TAG_ALBUM_SORTNAME
GST_TAG_ALBUM_ARTIST
GST_TAG_ALBUM_ARTIST_SORTNAME
GST_TAG_DATE
GST_TAG_DATE_TIME
GST_TAG_GENRE
GST_TAG_COMMENT
GST_TAG_EXTENDED_COMMENT
GST_TAG_TRACK_NUMBER
GST_TAG_TRACK_COUNT
GST_TAG_ALBUM_VOLUME_NUMBER
GST_TAG_ALBUM_VOLUME_COUNT
GST_TAG_LOCATION
GST_TAG_HOMEPAGE
GST_TAG_DESCRIPTION
GST_TAG_VERSION
GST_TAG_ISRC
GST_TAG_ORGANIZATION
GST_TAG_COPYRIGHT
GST_TAG_COPYRIGHT_URI
GST_TAG_ENCODED_BY
GST_TAG_COMPOSER
GST_TAG_CONTACT
GST_TAG_LICENSE
GST_TAG_LICENSE_URI
GST_TAG_PERFORMER
GST_TAG_DURATION
GST_TAG_CODEC
GST_TAG_VIDEO_CODEC
GST_TAG_AUDIO_CODEC
GST_TAG_SUBTITLE_CODEC
GST_TAG_CONTAINER_FORMAT
GST_TAG_BITRATE
GST_TAG_NOMINAL_BITRATE
GST_TAG_MINIMUM_BITRATE
GST_TAG_MAXIMUM_BITRATE
GST_TAG_SERIAL
GST_TAG_ENCODER
GST_TAG_ENCODER_VERSION
GST_TAG_TRACK_GAIN
GST_TAG_TRACK_PEAK
GST_TAG_ALBUM_GAIN
GST_TAG_ALBUM_PEAK
GST_TAG_REFERENCE_LEVEL
GST_TAG_LANGUAGE_CODE
GST_TAG_LANGUAGE_NAME
GST_TAG_IMAGE
GST_TAG_PREVIEW_IMAGE
GST_TAG_ATTACHMENT
GST_TAG_BEATS_PER_MINUTE
GST_TAG_KEYWORDS
GST_TAG_GEO_LOCATION_NAME
GST_TAG_GEO_LOCATION_LATITUDE
GST_TAG_GEO_LOCATION_LONGITUDE
GST_TAG_GEO_LOCATION_ELEVATION
GST_TAG_GEO_LOCATION_CITY
GST_TAG_GEO_LOCATION_COUNTRY
GST_TAG_GEO_LOCATION_SUBLOCATION
GST_TAG_GEO_LOCATION_HORIZONTAL_ERROR
GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION
GST_TAG_GEO_LOCATION_MOVEMENT_SPEED
GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION
GST_TAG_SHOW_NAME
GST_TAG_SHOW_SORTNAME
GST_TAG_SHOW_EPISODE_NUMBER
GST_TAG_SHOW_SEASON_NUMBER
GST_TAG_LYRICS
GST_TAG_COMPOSER_SORTNAME
GST_TAG_GROUPING
GST_TAG_USER_RATING
GST_TAG_DEVICE_MANUFACTURER
GST_TAG_DEVICE_MODEL
GST_TAG_APPLICATION_NAME
GST_TAG_APPLICATION_DATA
GST_TAG_IMAGE_ORIENTATION

gst_tag_register
gst_tag_register_static
gst_tag_merge_use_first
gst_tag_merge_strings_with_comma
gst_tag_exists
gst_tag_get_type
gst_tag_get_nick
gst_tag_get_description
gst_tag_get_flag
gst_tag_is_fixed
gst_tag_list_new
gst_tag_list_new_empty
gst_tag_list_new_valist
gst_tag_list_new_from_string
gst_tag_list_free
gst_tag_list_get_scope
gst_tag_list_set_scope
gst_tag_list_to_string
gst_tag_list_is_empty
gst_tag_list_is_equal
gst_tag_list_copy
gst_tag_list_ref
gst_tag_list_unref
gst_tag_list_is_writable
gst_tag_list_make_writable
gst_tag_list_insert
gst_tag_list_merge
gst_tag_list_get_tag_size
gst_tag_list_n_tags
gst_tag_list_nth_tag_name
gst_tag_list_add
gst_tag_list_add_value
gst_tag_list_add_values
gst_tag_list_add_valist
gst_tag_list_add_valist_values
gst_tag_list_remove_tag
gst_tag_list_foreach
gst_tag_list_get_value_index
gst_tag_list_copy_value
gst_tag_list_get_boolean
gst_tag_list_get_boolean_index
gst_tag_list_get_int
gst_tag_list_get_int_index
gst_tag_list_get_uint
gst_tag_list_get_uint_index
gst_tag_list_get_int64
gst_tag_list_get_int64_index
gst_tag_list_get_uint64
gst_tag_list_get_uint64_index
gst_tag_list_get_float
gst_tag_list_get_float_index
gst_tag_list_get_double
gst_tag_list_get_double_index
gst_tag_list_get_string
gst_tag_list_get_string_index
gst_tag_list_peek_string_index
gst_tag_list_get_pointer
gst_tag_list_get_pointer_index
gst_tag_list_get_date
gst_tag_list_get_date_index
gst_tag_list_get_date_time
gst_tag_list_get_date_time_index
gst_tag_list_get_sample
gst_tag_list_get_sample_index
<SUBSECTION Standard>
GST_TAG_LIST
GST_IS_TAG_LIST
GST_TAG_FLAG_IS_VALID
GST_TAG_MODE_IS_VALID
GST_TYPE_TAG_LIST
GST_TYPE_TAG_FLAG
GST_TYPE_TAG_MERGE_MODE
GST_TYPE_TAG_SCOPE
<SUBSECTION Private>
gst_tag_list_get_type
gst_tag_flag_get_type
gst_tag_merge_mode_get_type
gst_tag_scope_get_type
</SECTION>


<SECTION>
<FILE>gsttagsetter</FILE>
<TITLE>GstTagSetter</TITLE>
GstTagSetter
GstTagSetterInterface
gst_tag_setter_reset_tags
gst_tag_setter_merge_tags
gst_tag_setter_add_tags
gst_tag_setter_add_tag_value
gst_tag_setter_add_tag_values
gst_tag_setter_add_tag_valist
gst_tag_setter_add_tag_valist_values
gst_tag_setter_get_tag_list
gst_tag_setter_set_tag_merge_mode
gst_tag_setter_get_tag_merge_mode
<SUBSECTION Standard>
GST_TAG_SETTER
GST_IS_TAG_SETTER
GST_TAG_SETTER_GET_INTERFACE
GST_TYPE_TAG_SETTER
<SUBSECTION Private>
gst_tag_setter_get_type
</SECTION>

<SECTION>
<FILE>gsttaskpool</FILE>
<TITLE>GstTaskPool</TITLE>
GstTaskPool
GstTaskPoolClass
GstTaskPoolFunction
gst_task_pool_new
gst_task_pool_prepare
gst_task_pool_push
gst_task_pool_join
gst_task_pool_cleanup
<SUBSECTION Standard>
GST_IS_TASK_POOL
GST_IS_TASK_POOL_CLASS
GST_TASK_POOL
GST_TASK_POOL_CAST
GST_TASK_POOL_CLASS
GST_TASK_POOL_GET_CLASS
GST_TYPE_TASK_POOL
<SUBSECTION Private>
gst_task_pool_get_type
</SECTION>


<SECTION>
<FILE>gsttask</FILE>
<TITLE>GstTask</TITLE>
GstTask
GstTaskFunction
GstTaskState

GST_TASK_BROADCAST
GST_TASK_GET_COND
GST_TASK_GET_LOCK
GST_TASK_SIGNAL
GST_TASK_STATE
GST_TASK_WAIT

gst_task_new
gst_task_set_lock

gst_task_set_pool
gst_task_get_pool

GstTaskThreadFunc
gst_task_set_enter_callback
gst_task_set_leave_callback

gst_task_get_state
gst_task_set_state
gst_task_pause
gst_task_start
gst_task_stop
gst_task_join

gst_task_cleanup_all

<SUBSECTION Standard>
GstTaskClass
GstTaskPrivate
GST_TASK
GST_IS_TASK
GST_TYPE_TASK
GST_TASK_CLASS
GST_IS_TASK_CLASS
GST_TASK_GET_CLASS
GST_TASK_CAST
GST_TYPE_TASK_STATE
<SUBSECTION Private>
gst_task_get_type
gst_task_state_get_type
</SECTION>


<SECTION>
<FILE>gsttoc</FILE>
<TITLE>GstToc</TITLE>
GstToc
GstTocScope
GstTocEntry
GstTocEntryType
gst_toc_new
gst_toc_ref
gst_toc_unref
gst_toc_copy
gst_toc_make_writable
gst_toc_get_scope
gst_toc_get_entries
gst_toc_append_entry
gst_toc_get_tags
gst_toc_merge_tags
gst_toc_set_tags
gst_toc_dump
gst_toc_entry_new
gst_toc_entry_ref
gst_toc_entry_unref
gst_toc_entry_copy
gst_toc_entry_make_writable
gst_toc_find_entry
gst_toc_entry_get_toc
gst_toc_entry_get_uid
gst_toc_entry_get_parent
gst_toc_entry_get_sub_entries
gst_toc_entry_append_sub_entry
gst_toc_entry_get_start_stop_times
gst_toc_entry_set_start_stop_times
gst_toc_entry_get_tags
gst_toc_entry_merge_tags
gst_toc_entry_set_tags
gst_toc_entry_type_get_nick
gst_toc_entry_get_entry_type
gst_toc_entry_is_alternative
gst_toc_entry_is_sequence
GST_TOC_ENTRY_TYPE_IS_ALTERNATIVE
GST_TOC_ENTRY_TYPE_IS_SEQUENCE
<SUBSECTION Standard>
GST_TYPE_TOC
GST_TYPE_TOC_ENTRY
GST_TYPE_TOC_ENTRY_TYPE
GST_TYPE_TOC_SCOPE
<SUBSECTION Private>
gst_toc_get_type
gst_toc_entry_get_type
gst_toc_entry_type_get_type
gst_toc_scope_get_type
</SECTION>


<SECTION>
<FILE>gsttocsetter</FILE>
<TITLE>GstTocSetter</TITLE>
GstTocSetter
GstTocSetterInterface
gst_toc_setter_set_toc
gst_toc_setter_get_toc
gst_toc_setter_reset
<SUBSECTION Standard>
GST_IS_TOC_SETTER
GST_TOC_SETTER
GST_TOC_SETTER_GET_IFACE
GST_TYPE_TOC_SETTER
<SUBSECTION Private>
gst_toc_setter_get_type
</SECTION>


<SECTION>
<FILE>gsttypefind</FILE>
<TITLE>GstTypeFind</TITLE>
GstTypeFind
GstTypeFindFunction
GstTypeFindProbability
gst_type_find_peek
gst_type_find_suggest
gst_type_find_suggest_simple
gst_type_find_get_length
gst_type_find_register
<SUBSECTION Standard>
GST_TYPE_TYPE_FIND_PROBABILITY
<SUBSECTION Private>
gst_type_find_probability_get_type
gst_type_find_get_type
GST_TYPE_TYPE_FIND
</SECTION>


<SECTION>
<FILE>gsttypefindfactory</FILE>
<TITLE>GstTypeFindFactory</TITLE>
GstTypeFindFactory
gst_type_find_factory_get_list
gst_type_find_factory_get_extensions
gst_type_find_factory_get_caps
gst_type_find_factory_has_function
gst_type_find_factory_call_function
<SUBSECTION Standard>
GstTypeFindFactoryClass
GST_TYPE_FIND_FACTORY
GST_IS_TYPE_FIND_FACTORY
GST_TYPE_FIND_FACTORY_CLASS
GST_IS_TYPE_FIND_FACTORY_CLASS
GST_TYPE_FIND_FACTORY_GET_CLASS
GST_TYPE_TYPE_FIND_FACTORY
<SUBSECTION Private>
gst_type_find_factory_get_type
</SECTION>


<SECTION>
<FILE>gsturihandler</FILE>
<TITLE>GstUriHandler</TITLE>
GstURIHandler
GstURIHandlerInterface
GstURIType
GstURIError
gst_uri_error_quark
GST_URI_TYPE_IS_VALID
gst_uri_protocol_is_valid
gst_uri_protocol_is_supported
gst_uri_is_valid
gst_uri_has_protocol
gst_uri_get_protocol
gst_uri_get_location
gst_uri_construct
gst_filename_to_uri
gst_element_make_from_uri
gst_uri_handler_get_uri_type
gst_uri_handler_get_protocols
gst_uri_handler_get_uri
gst_uri_handler_set_uri
<SUBSECTION Standard>
GST_URI_HANDLER
GST_IS_URI_HANDLER
GST_URI_HANDLER_GET_INTERFACE
GST_TYPE_URI_HANDLER
GST_TYPE_URI_TYPE
gst_uri_error_get_type
GST_TYPE_URI_ERROR
GST_URI_ERROR
<SUBSECTION Private>
gst_uri_handler_get_type
gst_uri_type_get_type
</SECTION>


<SECTION>
<FILE>gstutils</FILE>
<TITLE>GstUtils</TITLE>
GST_CALL_PARENT
GST_CALL_PARENT_WITH_DEFAULT
GST_READ_UINT8
GST_READ_UINT16_LE
GST_READ_UINT16_BE
GST_READ_UINT24_LE
GST_READ_UINT24_BE
GST_READ_UINT32_LE
GST_READ_UINT32_BE
GST_READ_UINT64_LE
GST_READ_UINT64_BE
GST_READ_FLOAT_LE
GST_READ_FLOAT_BE
GST_READ_DOUBLE_LE
GST_READ_DOUBLE_BE
GST_WRITE_UINT8
GST_WRITE_UINT16_LE
GST_WRITE_UINT16_BE
GST_WRITE_UINT24_LE
GST_WRITE_UINT24_BE
GST_WRITE_UINT32_LE
GST_WRITE_UINT32_BE
GST_WRITE_UINT64_LE
GST_WRITE_UINT64_BE
GST_WRITE_FLOAT_LE
GST_WRITE_FLOAT_BE
GST_WRITE_DOUBLE_LE
GST_WRITE_DOUBLE_BE
GST_ROUND_UP_2
GST_ROUND_UP_4
GST_ROUND_UP_8
GST_ROUND_UP_16
GST_ROUND_UP_32
GST_ROUND_UP_64
GST_ROUND_DOWN_2
GST_ROUND_DOWN_4
GST_ROUND_DOWN_8
GST_ROUND_DOWN_16
GST_ROUND_DOWN_32
GST_ROUND_DOWN_64
GDOUBLE_FROM_BE
GDOUBLE_FROM_LE
GDOUBLE_SWAP_LE_BE
GDOUBLE_TO_BE
GDOUBLE_TO_LE
GFLOAT_FROM_BE
GFLOAT_FROM_LE
GFLOAT_SWAP_LE_BE
GFLOAT_TO_BE
GFLOAT_TO_LE


gst_guint64_to_gdouble
gst_gdouble_to_guint64
gst_util_dump_mem
gst_util_uint64_scale
gst_util_uint64_scale_round
gst_util_uint64_scale_ceil
gst_util_uint64_scale_int
gst_util_uint64_scale_int_round
gst_util_uint64_scale_int_ceil
gst_util_greatest_common_divisor
gst_util_greatest_common_divisor_int64
gst_util_fraction_to_double
gst_util_double_to_fraction
gst_util_fraction_multiply
gst_util_fraction_add
gst_util_fraction_compare
gst_util_seqnum_next
gst_util_seqnum_compare
gst_util_set_object_arg
gst_util_set_value_from_string
gst_util_get_timestamp
GstSearchMode
gst_util_array_binary_search
<SUBSECTION Private>
GST_HAVE_UNALIGNED_ACCESS
gst_util_guint64_to_gdouble
gst_util_gdouble_to_guint64
GST_TYPE_SEARCH_MODE
gst_search_mode_get_type
</SECTION>

<SECTION>
<FILE>gstdatetime</FILE>
<TITLE>GstDateTime</TITLE>
GstDateTime
GST_TYPE_DATE_TIME
gst_date_time_get_day
gst_date_time_get_month
gst_date_time_get_hour
gst_date_time_get_microsecond
gst_date_time_get_minute
gst_date_time_get_time_zone_offset
gst_date_time_get_second
gst_date_time_get_year
gst_date_time_new
gst_date_time_new_ymd
gst_date_time_new_ym
gst_date_time_new_y
gst_date_time_new_from_unix_epoch_local_time
gst_date_time_new_from_unix_epoch_utc
gst_date_time_new_local_time
gst_date_time_new_now_local_time
gst_date_time_new_now_utc
gst_date_time_ref
gst_date_time_unref

gst_date_time_has_day
gst_date_time_has_month
gst_date_time_has_second
gst_date_time_has_time
gst_date_time_has_year


gst_date_time_new_from_iso8601_string
gst_date_time_to_iso8601_string

gst_date_time_new_from_g_date_time
gst_date_time_to_g_date_time
</SECTION>

<SECTION>
<FILE>gstvalue</FILE>
<TITLE>GstValue</TITLE>

<SUBSECTION fourcc>
GST_MAKE_FOURCC
GST_STR_FOURCC
GST_FOURCC_FORMAT
GST_FOURCC_ARGS

<SUBSECTION intrange>
GST_VALUE_HOLDS_INT_RANGE
GST_TYPE_INT_RANGE
gst_value_set_int_range
gst_value_get_int_range_min
gst_value_get_int_range_max
gst_value_set_int_range_step
gst_value_get_int_range_step

<SUBSECTION bitmask>
GST_VALUE_HOLDS_BITMASK
GST_TYPE_BITMASK
gst_value_set_bitmask
gst_value_get_bitmask

<SUBSECTION int64range>
GST_VALUE_HOLDS_INT64_RANGE
GST_TYPE_INT64_RANGE
gst_value_set_int64_range
gst_value_get_int64_range_min
gst_value_get_int64_range_max
gst_value_set_int64_range_step
gst_value_get_int64_range_step

<SUBSECTION doublerange>
GST_VALUE_HOLDS_DOUBLE_RANGE
GST_TYPE_DOUBLE_RANGE
gst_value_set_double_range
gst_value_get_double_range_min
gst_value_get_double_range_max

<SUBSECTION valuelist>
GST_VALUE_HOLDS_LIST
GST_TYPE_LIST
GST_VALUE_HOLDS_ARRAY
GST_TYPE_ARRAY
gst_value_list_append_value
gst_value_list_prepend_value
gst_value_list_concat
gst_value_list_merge
gst_value_list_get_size
gst_value_list_get_value

<SUBSECTION fraction>
GST_VALUE_HOLDS_FRACTION
GST_TYPE_FRACTION
gst_value_set_fraction
gst_value_get_fraction_numerator
gst_value_get_fraction_denominator
gst_value_fraction_multiply
gst_value_fraction_subtract

<SUBSECTION fractionrange>
GST_VALUE_HOLDS_FRACTION_RANGE
GST_TYPE_FRACTION_RANGE
gst_value_set_fraction_range
gst_value_get_fraction_range_min
gst_value_get_fraction_range_max
gst_value_set_fraction_range_full

<SUBSECTION datetime>
GST_VALUE_HOLDS_DATE_TIME

<SUBSECTION caps>
GST_VALUE_HOLDS_CAPS
gst_value_set_caps
gst_value_get_caps

<SUBSECTION structure>
GST_VALUE_HOLDS_STRUCTURE
gst_value_set_structure
gst_value_get_structure

<SUBSECTION buffer>
GST_VALUE_HOLDS_BUFFER
gst_value_get_buffer
gst_value_set_buffer
gst_value_take_buffer

<SUBSECTION sample>
GST_VALUE_HOLDS_SAMPLE
gst_value_get_sample
gst_value_set_sample
gst_value_take_sample

<SUBSECTION>
GST_VALUE_LESS_THAN
GST_VALUE_EQUAL
GST_VALUE_GREATER_THAN
GST_VALUE_UNORDERED

GstValueCompareFunc
GstValueSerializeFunc
GstValueDeserializeFunc
GstValueTable

gst_value_is_fixed
gst_value_register
gst_value_init_and_copy
gst_value_serialize
gst_value_deserialize
gst_value_compare
gst_value_can_compare
gst_value_union
gst_value_can_union
gst_value_subtract
gst_value_can_subtract
gst_value_intersect
gst_value_can_intersect
gst_value_is_subset
gst_value_array_append_value
gst_value_array_get_size
gst_value_array_get_value
gst_value_array_prepend_value
gst_value_fixate


<SUBSECTION Private>
gst_date_get_type
gst_date_time_get_type
gst_double_range_get_type
gst_fraction_get_type
gst_fraction_range_get_type
gst_int_range_get_type
gst_int64_range_get_type
gst_value_array_get_type
gst_value_list_get_type
gst_bitmask_get_type
</SECTION>

<SECTION>
<FILE>gstversion</FILE>
<TITLE>GstVersion</TITLE>
GST_VERSION_MAJOR
GST_VERSION_MINOR
GST_VERSION_MICRO
GST_VERSION_NANO
GST_CHECK_VERSION
</SECTION>