aboutsummaryrefslogtreecommitdiff
path: root/docs/plugins/html/index.sgml
blob: 98a6520adfb50f6d017a6627dd0d875d7dc0580b (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
<ONLINE href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-bad/html/">
<ANCHOR id="gst-plugins-bad-plugins-accurip" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html">
<ANCHOR id="gst-plugins-bad-plugins-accurip.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#gst-plugins-bad-plugins-accurip.properties">
<ANCHOR id="GstAccurip" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#GstAccurip">
<ANCHOR id="gst-plugins-bad-plugins-accurip.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#gst-plugins-bad-plugins-accurip.other">
<ANCHOR id="gst-plugins-bad-plugins-accurip.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#gst-plugins-bad-plugins-accurip.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-accurip.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#gst-plugins-bad-plugins-accurip.description">
<ANCHOR id="gst-plugins-bad-plugins-accurip.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#gst-plugins-bad-plugins-accurip.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-accurip.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#gst-plugins-bad-plugins-accurip.other_details">
<ANCHOR id="GstAccurip-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#GstAccurip-struct">
<ANCHOR id="gst-plugins-bad-plugins-accurip.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#gst-plugins-bad-plugins-accurip.property-details">
<ANCHOR id="GstAccurip--first-track" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#GstAccurip--first-track">
<ANCHOR id="GstAccurip--last-track" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-accurip.html#GstAccurip--last-track">
<ANCHOR id="gst-plugins-bad-plugins-assrender" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html">
<ANCHOR id="gst-plugins-bad-plugins-assrender.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#gst-plugins-bad-plugins-assrender.properties">
<ANCHOR id="GstAssRender" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#GstAssRender">
<ANCHOR id="gst-plugins-bad-plugins-assrender.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#gst-plugins-bad-plugins-assrender.other">
<ANCHOR id="gst-plugins-bad-plugins-assrender.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#gst-plugins-bad-plugins-assrender.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-assrender.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#gst-plugins-bad-plugins-assrender.description">
<ANCHOR id="gst-plugins-bad-plugins-assrender.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#gst-plugins-bad-plugins-assrender.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-assrender.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#gst-plugins-bad-plugins-assrender.other_details">
<ANCHOR id="GstAssRender-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#GstAssRender-struct">
<ANCHOR id="gst-plugins-bad-plugins-assrender.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#gst-plugins-bad-plugins-assrender.property-details">
<ANCHOR id="GstAssRender--embeddedfonts" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#GstAssRender--embeddedfonts">
<ANCHOR id="GstAssRender--enable" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#GstAssRender--enable">
<ANCHOR id="GstAssRender--wait-text" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-assrender.html#GstAssRender--wait-text">
<ANCHOR id="gst-plugins-bad-plugins-autoconvert" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html">
<ANCHOR id="gst-plugins-bad-plugins-autoconvert.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#gst-plugins-bad-plugins-autoconvert.properties">
<ANCHOR id="GstAutoConvert" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#GstAutoConvert">
<ANCHOR id="gst-plugins-bad-plugins-autoconvert.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#gst-plugins-bad-plugins-autoconvert.other">
<ANCHOR id="gst-plugins-bad-plugins-autoconvert.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#gst-plugins-bad-plugins-autoconvert.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-autoconvert.implemented-interfaces" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#gst-plugins-bad-plugins-autoconvert.implemented-interfaces">
<ANCHOR id="gst-plugins-bad-plugins-autoconvert.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#gst-plugins-bad-plugins-autoconvert.description">
<ANCHOR id="gst-plugins-bad-plugins-autoconvert.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#gst-plugins-bad-plugins-autoconvert.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-autoconvert.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#gst-plugins-bad-plugins-autoconvert.other_details">
<ANCHOR id="GstAutoConvert-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#GstAutoConvert-struct">
<ANCHOR id="gst-plugins-bad-plugins-autoconvert.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#gst-plugins-bad-plugins-autoconvert.property-details">
<ANCHOR id="GstAutoConvert--factories" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#GstAutoConvert--factories">
<ANCHOR id="GstAutoConvert--initial-identity" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-autoconvert.html#GstAutoConvert--initial-identity">
<ANCHOR id="gst-plugins-bad-plugins-bulge" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html">
<ANCHOR id="gst-plugins-bad-plugins-bulge.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html#gst-plugins-bad-plugins-bulge.properties">
<ANCHOR id="GstBulge" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html#GstBulge">
<ANCHOR id="gst-plugins-bad-plugins-bulge.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html#gst-plugins-bad-plugins-bulge.other">
<ANCHOR id="gst-plugins-bad-plugins-bulge.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html#gst-plugins-bad-plugins-bulge.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-bulge.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html#gst-plugins-bad-plugins-bulge.description">
<ANCHOR id="gst-plugins-bad-plugins-bulge.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html#gst-plugins-bad-plugins-bulge.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-bulge.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html#gst-plugins-bad-plugins-bulge.other_details">
<ANCHOR id="GstBulge-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html#GstBulge-struct">
<ANCHOR id="gst-plugins-bad-plugins-bulge.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html#gst-plugins-bad-plugins-bulge.property-details">
<ANCHOR id="GstBulge--zoom" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-bulge.html#GstBulge--zoom">
<ANCHOR id="gst-plugins-bad-plugins-burn" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html">
<ANCHOR id="gst-plugins-bad-plugins-burn.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#gst-plugins-bad-plugins-burn.properties">
<ANCHOR id="GstBurn" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#GstBurn">
<ANCHOR id="gst-plugins-bad-plugins-burn.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#gst-plugins-bad-plugins-burn.other">
<ANCHOR id="gst-plugins-bad-plugins-burn.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#gst-plugins-bad-plugins-burn.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-burn.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#gst-plugins-bad-plugins-burn.description">
<ANCHOR id="gst-plugins-bad-plugins-burn.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#gst-plugins-bad-plugins-burn.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-burn.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#gst-plugins-bad-plugins-burn.other_details">
<ANCHOR id="GstBurn-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#GstBurn-struct">
<ANCHOR id="gst-plugins-bad-plugins-burn.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#gst-plugins-bad-plugins-burn.property-details">
<ANCHOR id="GstBurn--silent" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#GstBurn--silent">
<ANCHOR id="GstBurn--adjustment" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-burn.html#GstBurn--adjustment">
<ANCHOR id="gst-plugins-bad-plugins-camerabin" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-camerabin.html">
<ANCHOR id="gst-plugins-bad-plugins-camerabin.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-camerabin.html#gst-plugins-bad-plugins-camerabin.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-camerabin.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-camerabin.html#gst-plugins-bad-plugins-camerabin.description">
<ANCHOR id="gst-plugins-bad-plugins-camerabin.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-camerabin.html#gst-plugins-bad-plugins-camerabin.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-camerabin.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-camerabin.html#gst-plugins-bad-plugins-camerabin.other_details">
<ANCHOR id="gst-plugins-bad-plugins-chromium" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html">
<ANCHOR id="gst-plugins-bad-plugins-chromium.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#gst-plugins-bad-plugins-chromium.properties">
<ANCHOR id="GstChromium" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#GstChromium">
<ANCHOR id="gst-plugins-bad-plugins-chromium.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#gst-plugins-bad-plugins-chromium.other">
<ANCHOR id="gst-plugins-bad-plugins-chromium.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#gst-plugins-bad-plugins-chromium.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-chromium.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#gst-plugins-bad-plugins-chromium.description">
<ANCHOR id="gst-plugins-bad-plugins-chromium.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#gst-plugins-bad-plugins-chromium.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-chromium.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#gst-plugins-bad-plugins-chromium.other_details">
<ANCHOR id="GstChromium" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#GstChromium">
<ANCHOR id="gst-plugins-bad-plugins-chromium.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#gst-plugins-bad-plugins-chromium.property-details">
<ANCHOR id="GstChromium--silent" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#GstChromium--silent">
<ANCHOR id="GstChromium--edge-a" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#GstChromium--edge-a">
<ANCHOR id="GstChromium--edge-b" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-chromium.html#GstChromium--edge-b">
<ANCHOR id="gst-plugins-bad-plugins-circle" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html">
<ANCHOR id="gst-plugins-bad-plugins-circle.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#gst-plugins-bad-plugins-circle.properties">
<ANCHOR id="GstCircle" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#GstCircle">
<ANCHOR id="gst-plugins-bad-plugins-circle.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#gst-plugins-bad-plugins-circle.other">
<ANCHOR id="gst-plugins-bad-plugins-circle.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#gst-plugins-bad-plugins-circle.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-circle.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#gst-plugins-bad-plugins-circle.description">
<ANCHOR id="gst-plugins-bad-plugins-circle.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#gst-plugins-bad-plugins-circle.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-circle.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#gst-plugins-bad-plugins-circle.other_details">
<ANCHOR id="GstCircle-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#GstCircle-struct">
<ANCHOR id="gst-plugins-bad-plugins-circle.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#gst-plugins-bad-plugins-circle.property-details">
<ANCHOR id="GstCircle--angle" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#GstCircle--angle">
<ANCHOR id="GstCircle--height" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#GstCircle--height">
<ANCHOR id="GstCircle--spread-angle" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-circle.html#GstCircle--spread-angle">
<ANCHOR id="gst-plugins-bad-plugins-coloreffects" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html">
<ANCHOR id="gst-plugins-bad-plugins-coloreffects.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html#gst-plugins-bad-plugins-coloreffects.properties">
<ANCHOR id="GstColorEffects" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html#GstColorEffects">
<ANCHOR id="gst-plugins-bad-plugins-coloreffects.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html#gst-plugins-bad-plugins-coloreffects.other">
<ANCHOR id="gst-plugins-bad-plugins-coloreffects.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html#gst-plugins-bad-plugins-coloreffects.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-coloreffects.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html#gst-plugins-bad-plugins-coloreffects.description">
<ANCHOR id="gst-plugins-bad-plugins-coloreffects.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html#gst-plugins-bad-plugins-coloreffects.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-coloreffects.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html#gst-plugins-bad-plugins-coloreffects.other_details">
<ANCHOR id="GstColorEffects-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html#GstColorEffects-struct">
<ANCHOR id="gst-plugins-bad-plugins-coloreffects.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html#gst-plugins-bad-plugins-coloreffects.property-details">
<ANCHOR id="GstColorEffects--preset" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-coloreffects.html#GstColorEffects--preset">
<ANCHOR id="gst-plugins-bad-plugins-compositor" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-compositor.html">
<ANCHOR id="gst-plugins-bad-plugins-compositor.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-compositor.html#gst-plugins-bad-plugins-compositor.properties">
<ANCHOR id="GstCompositor" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-compositor.html#GstCompositor">
<ANCHOR id="GstCompositorPad" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-compositor.html#GstCompositorPad">
<ANCHOR id="gst-plugins-bad-plugins-compositor.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-compositor.html#gst-plugins-bad-plugins-compositor.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-compositor.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-compositor.html#gst-plugins-bad-plugins-compositor.description">
<ANCHOR id="gst-plugins-bad-plugins-compositor.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-compositor.html#gst-plugins-bad-plugins-compositor.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-compositor.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-compositor.html#gst-plugins-bad-plugins-compositor.other_details">
<ANCHOR id="gst-plugins-bad-plugins-compositor.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-compositor.html#gst-plugins-bad-plugins-compositor.property-details">
<ANCHOR id="GstCompositor--background" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-compositor.html#GstCompositor--background">
<ANCHOR id="gst-plugins-bad-plugins-cvdilate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvdilate.html">
<ANCHOR id="GstCvDilate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvdilate.html#GstCvDilate">
<ANCHOR id="gst-plugins-bad-plugins-cvdilate.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvdilate.html#gst-plugins-bad-plugins-cvdilate.other">
<ANCHOR id="gst-plugins-bad-plugins-cvdilate.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvdilate.html#gst-plugins-bad-plugins-cvdilate.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-cvdilate.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvdilate.html#gst-plugins-bad-plugins-cvdilate.description">
<ANCHOR id="gst-plugins-bad-plugins-cvdilate.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvdilate.html#gst-plugins-bad-plugins-cvdilate.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-cvdilate.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvdilate.html#gst-plugins-bad-plugins-cvdilate.other_details">
<ANCHOR id="GstCvDilate-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvdilate.html#GstCvDilate-struct">
<ANCHOR id="gst-plugins-bad-plugins-cverode" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cverode.html">
<ANCHOR id="GstCvErode" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cverode.html#GstCvErode">
<ANCHOR id="gst-plugins-bad-plugins-cverode.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cverode.html#gst-plugins-bad-plugins-cverode.other">
<ANCHOR id="gst-plugins-bad-plugins-cverode.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cverode.html#gst-plugins-bad-plugins-cverode.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-cverode.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cverode.html#gst-plugins-bad-plugins-cverode.description">
<ANCHOR id="gst-plugins-bad-plugins-cverode.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cverode.html#gst-plugins-bad-plugins-cverode.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-cverode.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cverode.html#gst-plugins-bad-plugins-cverode.other_details">
<ANCHOR id="GstCvErode-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cverode.html#GstCvErode-struct">
<ANCHOR id="gst-plugins-bad-plugins-cvequalizehist" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvequalizehist.html">
<ANCHOR id="GstCvEqualizeHist" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvequalizehist.html#GstCvEqualizeHist">
<ANCHOR id="gst-plugins-bad-plugins-cvequalizehist.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvequalizehist.html#gst-plugins-bad-plugins-cvequalizehist.other">
<ANCHOR id="gst-plugins-bad-plugins-cvequalizehist.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvequalizehist.html#gst-plugins-bad-plugins-cvequalizehist.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-cvequalizehist.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvequalizehist.html#gst-plugins-bad-plugins-cvequalizehist.description">
<ANCHOR id="gst-plugins-bad-plugins-cvequalizehist.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvequalizehist.html#gst-plugins-bad-plugins-cvequalizehist.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-cvequalizehist.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvequalizehist.html#gst-plugins-bad-plugins-cvequalizehist.other_details">
<ANCHOR id="GstCvEqualizeHist-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvequalizehist.html#GstCvEqualizeHist-struct">
<ANCHOR id="gst-plugins-bad-plugins-cvlaplace" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html">
<ANCHOR id="gst-plugins-bad-plugins-cvlaplace.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html#gst-plugins-bad-plugins-cvlaplace.properties">
<ANCHOR id="GstCvLaplace" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html#GstCvLaplace">
<ANCHOR id="gst-plugins-bad-plugins-cvlaplace.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html#gst-plugins-bad-plugins-cvlaplace.other">
<ANCHOR id="gst-plugins-bad-plugins-cvlaplace.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html#gst-plugins-bad-plugins-cvlaplace.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-cvlaplace.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html#gst-plugins-bad-plugins-cvlaplace.description">
<ANCHOR id="gst-plugins-bad-plugins-cvlaplace.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html#gst-plugins-bad-plugins-cvlaplace.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-cvlaplace.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html#gst-plugins-bad-plugins-cvlaplace.other_details">
<ANCHOR id="GstCvLaplace-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html#GstCvLaplace-struct">
<ANCHOR id="gst-plugins-bad-plugins-cvlaplace.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html#gst-plugins-bad-plugins-cvlaplace.property-details">
<ANCHOR id="GstCvLaplace--aperture-size" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvlaplace.html#GstCvLaplace--aperture-size">
<ANCHOR id="gst-plugins-bad-plugins-cvsmooth" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html">
<ANCHOR id="gst-plugins-bad-plugins-cvsmooth.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#gst-plugins-bad-plugins-cvsmooth.properties">
<ANCHOR id="GstCvSmooth" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#GstCvSmooth">
<ANCHOR id="gst-plugins-bad-plugins-cvsmooth.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#gst-plugins-bad-plugins-cvsmooth.other">
<ANCHOR id="gst-plugins-bad-plugins-cvsmooth.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#gst-plugins-bad-plugins-cvsmooth.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-cvsmooth.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#gst-plugins-bad-plugins-cvsmooth.description">
<ANCHOR id="gst-plugins-bad-plugins-cvsmooth.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#gst-plugins-bad-plugins-cvsmooth.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-cvsmooth.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#gst-plugins-bad-plugins-cvsmooth.other_details">
<ANCHOR id="GstCvSmooth-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#GstCvSmooth-struct">
<ANCHOR id="gst-plugins-bad-plugins-cvsmooth.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#gst-plugins-bad-plugins-cvsmooth.property-details">
<ANCHOR id="GstCvSmooth--param1" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#GstCvSmooth--param1">
<ANCHOR id="GstCvSmooth--param2" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#GstCvSmooth--param2">
<ANCHOR id="GstCvSmooth--param3" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#GstCvSmooth--param3">
<ANCHOR id="GstCvSmooth--param4" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#GstCvSmooth--param4">
<ANCHOR id="GstCvSmooth--type" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsmooth.html#GstCvSmooth--type">
<ANCHOR id="gst-plugins-bad-plugins-cvsobel" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html">
<ANCHOR id="gst-plugins-bad-plugins-cvsobel.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#gst-plugins-bad-plugins-cvsobel.properties">
<ANCHOR id="GstCvSobel" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#GstCvSobel">
<ANCHOR id="gst-plugins-bad-plugins-cvsobel.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#gst-plugins-bad-plugins-cvsobel.other">
<ANCHOR id="gst-plugins-bad-plugins-cvsobel.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#gst-plugins-bad-plugins-cvsobel.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-cvsobel.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#gst-plugins-bad-plugins-cvsobel.description">
<ANCHOR id="gst-plugins-bad-plugins-cvsobel.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#gst-plugins-bad-plugins-cvsobel.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-cvsobel.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#gst-plugins-bad-plugins-cvsobel.other_details">
<ANCHOR id="GstCvSobel-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#GstCvSobel-struct">
<ANCHOR id="gst-plugins-bad-plugins-cvsobel.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#gst-plugins-bad-plugins-cvsobel.property-details">
<ANCHOR id="GstCvSobel--aperture-size" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#GstCvSobel--aperture-size">
<ANCHOR id="GstCvSobel--x-order" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#GstCvSobel--x-order">
<ANCHOR id="GstCvSobel--y-order" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-cvsobel.html#GstCvSobel--y-order">
<ANCHOR id="gst-plugins-bad-plugins-dataurisrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html">
<ANCHOR id="gst-plugins-bad-plugins-dataurisrc.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#gst-plugins-bad-plugins-dataurisrc.properties">
<ANCHOR id="GstDataURISrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#GstDataURISrc">
<ANCHOR id="gst-plugins-bad-plugins-dataurisrc.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#gst-plugins-bad-plugins-dataurisrc.other">
<ANCHOR id="gst-plugins-bad-plugins-dataurisrc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#gst-plugins-bad-plugins-dataurisrc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-dataurisrc.implemented-interfaces" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#gst-plugins-bad-plugins-dataurisrc.implemented-interfaces">
<ANCHOR id="gst-plugins-bad-plugins-dataurisrc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#gst-plugins-bad-plugins-dataurisrc.description">
<ANCHOR id="gst-plugins-bad-plugins-dataurisrc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#gst-plugins-bad-plugins-dataurisrc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-dataurisrc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#gst-plugins-bad-plugins-dataurisrc.other_details">
<ANCHOR id="GstDataURISrc-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#GstDataURISrc-struct">
<ANCHOR id="gst-plugins-bad-plugins-dataurisrc.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#gst-plugins-bad-plugins-dataurisrc.property-details">
<ANCHOR id="GstDataURISrc--uri" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dataurisrc.html#GstDataURISrc--uri">
<ANCHOR id="gst-plugins-bad-plugins-diffuse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html">
<ANCHOR id="gst-plugins-bad-plugins-diffuse.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html#gst-plugins-bad-plugins-diffuse.properties">
<ANCHOR id="GstDiffuse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html#GstDiffuse">
<ANCHOR id="gst-plugins-bad-plugins-diffuse.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html#gst-plugins-bad-plugins-diffuse.other">
<ANCHOR id="gst-plugins-bad-plugins-diffuse.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html#gst-plugins-bad-plugins-diffuse.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-diffuse.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html#gst-plugins-bad-plugins-diffuse.description">
<ANCHOR id="gst-plugins-bad-plugins-diffuse.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html#gst-plugins-bad-plugins-diffuse.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-diffuse.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html#gst-plugins-bad-plugins-diffuse.other_details">
<ANCHOR id="GstDiffuse-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html#GstDiffuse-struct">
<ANCHOR id="gst-plugins-bad-plugins-diffuse.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html#gst-plugins-bad-plugins-diffuse.property-details">
<ANCHOR id="GstDiffuse--scale" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-diffuse.html#GstDiffuse--scale">
<ANCHOR id="gst-plugins-bad-plugins-dilate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html">
<ANCHOR id="gst-plugins-bad-plugins-dilate.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#gst-plugins-bad-plugins-dilate.properties">
<ANCHOR id="GstDilate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#GstDilate">
<ANCHOR id="gst-plugins-bad-plugins-dilate.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#gst-plugins-bad-plugins-dilate.other">
<ANCHOR id="gst-plugins-bad-plugins-dilate.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#gst-plugins-bad-plugins-dilate.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-dilate.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#gst-plugins-bad-plugins-dilate.description">
<ANCHOR id="gst-plugins-bad-plugins-dilate.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#gst-plugins-bad-plugins-dilate.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-dilate.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#gst-plugins-bad-plugins-dilate.other_details">
<ANCHOR id="GstDilate-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#GstDilate-struct">
<ANCHOR id="gst-plugins-bad-plugins-dilate.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#gst-plugins-bad-plugins-dilate.property-details">
<ANCHOR id="GstDilate--silent" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#GstDilate--silent">
<ANCHOR id="GstDilate--erode" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dilate.html#GstDilate--erode">
<ANCHOR id="gst-plugins-bad-plugins-dodge" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html">
<ANCHOR id="gst-plugins-bad-plugins-dodge.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html#gst-plugins-bad-plugins-dodge.properties">
<ANCHOR id="GstDodge" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html#GstDodge">
<ANCHOR id="gst-plugins-bad-plugins-dodge.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html#gst-plugins-bad-plugins-dodge.other">
<ANCHOR id="gst-plugins-bad-plugins-dodge.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html#gst-plugins-bad-plugins-dodge.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-dodge.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html#gst-plugins-bad-plugins-dodge.description">
<ANCHOR id="gst-plugins-bad-plugins-dodge.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html#gst-plugins-bad-plugins-dodge.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-dodge.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html#gst-plugins-bad-plugins-dodge.other_details">
<ANCHOR id="GstDodge-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html#GstDodge-struct">
<ANCHOR id="gst-plugins-bad-plugins-dodge.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html#gst-plugins-bad-plugins-dodge.property-details">
<ANCHOR id="GstDodge--silent" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dodge.html#GstDodge--silent">
<ANCHOR id="gst-plugins-bad-plugins-dtmfdetect" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtmfdetect.html">
<ANCHOR id="GstDtmfDetect" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtmfdetect.html#GstDtmfDetect">
<ANCHOR id="gst-plugins-bad-plugins-dtmfdetect.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtmfdetect.html#gst-plugins-bad-plugins-dtmfdetect.other">
<ANCHOR id="gst-plugins-bad-plugins-dtmfdetect.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtmfdetect.html#gst-plugins-bad-plugins-dtmfdetect.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-dtmfdetect.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtmfdetect.html#gst-plugins-bad-plugins-dtmfdetect.description">
<ANCHOR id="gst-plugins-bad-plugins-dtmfdetect.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtmfdetect.html#gst-plugins-bad-plugins-dtmfdetect.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-dtmfdetect.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtmfdetect.html#gst-plugins-bad-plugins-dtmfdetect.other_details">
<ANCHOR id="GstDtmfDetect-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtmfdetect.html#GstDtmfDetect-struct">
<ANCHOR id="gst-plugins-bad-plugins-dtsdec" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html">
<ANCHOR id="gst-plugins-bad-plugins-dtsdec.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html#gst-plugins-bad-plugins-dtsdec.properties">
<ANCHOR id="GstDtsDec" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html#GstDtsDec">
<ANCHOR id="gst-plugins-bad-plugins-dtsdec.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html#gst-plugins-bad-plugins-dtsdec.other">
<ANCHOR id="gst-plugins-bad-plugins-dtsdec.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html#gst-plugins-bad-plugins-dtsdec.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-dtsdec.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html#gst-plugins-bad-plugins-dtsdec.description">
<ANCHOR id="gst-plugins-bad-plugins-dtsdec.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html#gst-plugins-bad-plugins-dtsdec.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-dtsdec.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html#gst-plugins-bad-plugins-dtsdec.other_details">
<ANCHOR id="GstDtsDec-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html#GstDtsDec-struct">
<ANCHOR id="gst-plugins-bad-plugins-dtsdec.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html#gst-plugins-bad-plugins-dtsdec.property-details">
<ANCHOR id="GstDtsDec--drc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dtsdec.html#GstDtsDec--drc">
<ANCHOR id="gst-plugins-bad-plugins-dvbsrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html">
<ANCHOR id="gst-plugins-bad-plugins-dvbsrc.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#gst-plugins-bad-plugins-dvbsrc.properties">
<ANCHOR id="gst-plugins-bad-plugins-dvbsrc.signals" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#gst-plugins-bad-plugins-dvbsrc.signals">
<ANCHOR id="GstDvbSrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc">
<ANCHOR id="gst-plugins-bad-plugins-dvbsrc.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#gst-plugins-bad-plugins-dvbsrc.other">
<ANCHOR id="gst-plugins-bad-plugins-dvbsrc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#gst-plugins-bad-plugins-dvbsrc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-dvbsrc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#gst-plugins-bad-plugins-dvbsrc.description">
<ANCHOR id="gst-plugins-bad-plugins-dvbsrc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#gst-plugins-bad-plugins-dvbsrc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-dvbsrc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#gst-plugins-bad-plugins-dvbsrc.other_details">
<ANCHOR id="GstDvbSrc-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc-struct">
<ANCHOR id="gst-plugins-bad-plugins-dvbsrc.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#gst-plugins-bad-plugins-dvbsrc.property-details">
<ANCHOR id="GstDvbSrc--bandwidth-hz" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--bandwidth-hz">
<ANCHOR id="GstDvbSrc--bandwidth" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--bandwidth">
<ANCHOR id="GstDvbSrc--code-rate-hp" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--code-rate-hp">
<ANCHOR id="GstDvbSrc--code-rate-lp" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--code-rate-lp">
<ANCHOR id="GstDvbSrc--device" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--device">
<ANCHOR id="GstDvbSrc--diseqc-src" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--diseqc-src">
<ANCHOR id="GstDvbSrc--freq" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--freq">
<ANCHOR id="GstDvbSrc--guard" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--guard">
<ANCHOR id="GstDvbSrc--hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--hierarchy">
<ANCHOR id="GstDvbSrc--inversion" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--inversion">
<ANCHOR id="GstDvbSrc--modulation" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--modulation">
<ANCHOR id="GstDvbSrc--pids" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--pids">
<ANCHOR id="GstDvbSrc--pol" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--pol">
<ANCHOR id="GstDvbSrc--srate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--srate">
<ANCHOR id="GstDvbSrc--trans-mode" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--trans-mode">
<ANCHOR id="GstDvbSrc--tune" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--tune">
<ANCHOR id="GstDvbSrc--adapter" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--adapter">
<ANCHOR id="GstDvbSrc--diseqc-source" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--diseqc-source">
<ANCHOR id="GstDvbSrc--frequency" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--frequency">
<ANCHOR id="GstDvbSrc--frontend" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--frontend">
<ANCHOR id="GstDvbSrc--polarity" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--polarity">
<ANCHOR id="GstDvbSrc--symbol-rate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--symbol-rate">
<ANCHOR id="GstDvbSrc--stats-reporting-interval" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--stats-reporting-interval">
<ANCHOR id="GstDvbSrc--timeout" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--timeout">
<ANCHOR id="GstDvbSrc--dvb-buffer-size" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--dvb-buffer-size">
<ANCHOR id="GstDvbSrc--delsys" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--delsys">
<ANCHOR id="GstDvbSrc--pilot" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--pilot">
<ANCHOR id="GstDvbSrc--rolloff" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--rolloff">
<ANCHOR id="GstDvbSrc--stream-id" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--stream-id">
<ANCHOR id="GstDvbSrc--tuning-timeout" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc--tuning-timeout">
<ANCHOR id="gst-plugins-bad-plugins-dvbsrc.signal-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#gst-plugins-bad-plugins-dvbsrc.signal-details">
<ANCHOR id="GstDvbSrc-tuning-done" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc-tuning-done">
<ANCHOR id="GstDvbSrc-tuning-fail" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc-tuning-fail">
<ANCHOR id="GstDvbSrc-tuning-start" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvbsrc.html#GstDvbSrc-tuning-start">
<ANCHOR id="gst-plugins-bad-plugins-dvdspu" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvdspu.html">
<ANCHOR id="GstDVDSpu" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvdspu.html#GstDVDSpu">
<ANCHOR id="gst-plugins-bad-plugins-dvdspu.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvdspu.html#gst-plugins-bad-plugins-dvdspu.other">
<ANCHOR id="gst-plugins-bad-plugins-dvdspu.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvdspu.html#gst-plugins-bad-plugins-dvdspu.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-dvdspu.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvdspu.html#gst-plugins-bad-plugins-dvdspu.description">
<ANCHOR id="gst-plugins-bad-plugins-dvdspu.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvdspu.html#gst-plugins-bad-plugins-dvdspu.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-dvdspu.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvdspu.html#gst-plugins-bad-plugins-dvdspu.other_details">
<ANCHOR id="GstDVDSpu-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-dvdspu.html#GstDVDSpu-struct">
<ANCHOR id="gst-plugins-bad-plugins-exclusion" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html">
<ANCHOR id="gst-plugins-bad-plugins-exclusion.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#gst-plugins-bad-plugins-exclusion.properties">
<ANCHOR id="GstExclusion" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#GstExclusion">
<ANCHOR id="gst-plugins-bad-plugins-exclusion.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#gst-plugins-bad-plugins-exclusion.other">
<ANCHOR id="gst-plugins-bad-plugins-exclusion.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#gst-plugins-bad-plugins-exclusion.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-exclusion.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#gst-plugins-bad-plugins-exclusion.description">
<ANCHOR id="gst-plugins-bad-plugins-exclusion.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#gst-plugins-bad-plugins-exclusion.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-exclusion.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#gst-plugins-bad-plugins-exclusion.other_details">
<ANCHOR id="GstExclusion-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#GstExclusion-struct">
<ANCHOR id="gst-plugins-bad-plugins-exclusion.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#gst-plugins-bad-plugins-exclusion.property-details">
<ANCHOR id="GstExclusion--silent" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#GstExclusion--silent">
<ANCHOR id="GstExclusion--factor" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-exclusion.html#GstExclusion--factor">
<ANCHOR id="gst-plugins-bad-plugins-edgedetect" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-edgedetect.html">
<ANCHOR id="gst-plugins-bad-plugins-edgedetect.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-edgedetect.html#gst-plugins-bad-plugins-edgedetect.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-edgedetect.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-edgedetect.html#gst-plugins-bad-plugins-edgedetect.description">
<ANCHOR id="gst-plugins-bad-plugins-edgedetect.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-edgedetect.html#gst-plugins-bad-plugins-edgedetect.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-edgedetect.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-edgedetect.html#gst-plugins-bad-plugins-edgedetect.other_details">
<ANCHOR id="gst-plugins-bad-plugins-eglglessink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-eglglessink.html">
<ANCHOR id="gst-plugins-bad-plugins-eglglessink.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-eglglessink.html#gst-plugins-bad-plugins-eglglessink.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-eglglessink.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-eglglessink.html#gst-plugins-bad-plugins-eglglessink.description">
<ANCHOR id="gst-plugins-bad-plugins-eglglessink.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-eglglessink.html#gst-plugins-bad-plugins-eglglessink.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-eglglessink.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-eglglessink.html#gst-plugins-bad-plugins-eglglessink.other_details">
<ANCHOR id="gst-plugins-bad-plugins-faac" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html">
<ANCHOR id="gst-plugins-bad-plugins-faac.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#gst-plugins-bad-plugins-faac.properties">
<ANCHOR id="GstFaac" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#GstFaac">
<ANCHOR id="gst-plugins-bad-plugins-faac.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#gst-plugins-bad-plugins-faac.other">
<ANCHOR id="gst-plugins-bad-plugins-faac.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#gst-plugins-bad-plugins-faac.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-faac.implemented-interfaces" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#gst-plugins-bad-plugins-faac.implemented-interfaces">
<ANCHOR id="gst-plugins-bad-plugins-faac.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#gst-plugins-bad-plugins-faac.description">
<ANCHOR id="gst-plugins-bad-plugins-faac.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#gst-plugins-bad-plugins-faac.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-faac.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#gst-plugins-bad-plugins-faac.other_details">
<ANCHOR id="GstFaac-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#GstFaac-struct">
<ANCHOR id="gst-plugins-bad-plugins-faac.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#gst-plugins-bad-plugins-faac.property-details">
<ANCHOR id="GstFaac--bitrate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#GstFaac--bitrate">
<ANCHOR id="GstFaac--midside" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#GstFaac--midside">
<ANCHOR id="GstFaac--outputformat" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#GstFaac--outputformat">
<ANCHOR id="GstFaac--profile" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#GstFaac--profile">
<ANCHOR id="GstFaac--shortctl" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#GstFaac--shortctl">
<ANCHOR id="GstFaac--tns" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#GstFaac--tns">
<ANCHOR id="GstFaac--quality" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#GstFaac--quality">
<ANCHOR id="GstFaac--rate-control" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faac.html#GstFaac--rate-control">
<ANCHOR id="gst-plugins-bad-plugins-faad" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faad.html">
<ANCHOR id="GstFaad" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faad.html#GstFaad">
<ANCHOR id="gst-plugins-bad-plugins-faad.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faad.html#gst-plugins-bad-plugins-faad.other">
<ANCHOR id="gst-plugins-bad-plugins-faad.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faad.html#gst-plugins-bad-plugins-faad.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-faad.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faad.html#gst-plugins-bad-plugins-faad.description">
<ANCHOR id="gst-plugins-bad-plugins-faad.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faad.html#gst-plugins-bad-plugins-faad.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-faad.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faad.html#gst-plugins-bad-plugins-faad.other_details">
<ANCHOR id="GstFaad-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faad.html#GstFaad-struct">
<ANCHOR id="gst-plugins-bad-plugins-faceblur" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faceblur.html">
<ANCHOR id="gst-plugins-bad-plugins-faceblur.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faceblur.html#gst-plugins-bad-plugins-faceblur.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-faceblur.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faceblur.html#gst-plugins-bad-plugins-faceblur.description">
<ANCHOR id="gst-plugins-bad-plugins-faceblur.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faceblur.html#gst-plugins-bad-plugins-faceblur.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-faceblur.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-faceblur.html#gst-plugins-bad-plugins-faceblur.other_details">
<ANCHOR id="gst-plugins-bad-plugins-facedetect" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-facedetect.html">
<ANCHOR id="gst-plugins-bad-plugins-facedetect.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-facedetect.html#gst-plugins-bad-plugins-facedetect.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-facedetect.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-facedetect.html#gst-plugins-bad-plugins-facedetect.description">
<ANCHOR id="gst-plugins-bad-plugins-facedetect.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-facedetect.html#gst-plugins-bad-plugins-facedetect.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-facedetect.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-facedetect.html#gst-plugins-bad-plugins-facedetect.other_details">
<ANCHOR id="gst-plugins-bad-plugins-festival" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-festival.html">
<ANCHOR id="GstFestival" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-festival.html#GstFestival">
<ANCHOR id="gst-plugins-bad-plugins-festival.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-festival.html#gst-plugins-bad-plugins-festival.other">
<ANCHOR id="gst-plugins-bad-plugins-festival.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-festival.html#gst-plugins-bad-plugins-festival.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-festival.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-festival.html#gst-plugins-bad-plugins-festival.description">
<ANCHOR id="gst-plugins-bad-plugins-festival.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-festival.html#gst-plugins-bad-plugins-festival.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-festival.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-festival.html#gst-plugins-bad-plugins-festival.other_details">
<ANCHOR id="GstFestival-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-festival.html#GstFestival-struct">
<ANCHOR id="gst-plugins-bad-plugins-fisheye" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fisheye.html">
<ANCHOR id="GstFisheye" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fisheye.html#GstFisheye">
<ANCHOR id="gst-plugins-bad-plugins-fisheye.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fisheye.html#gst-plugins-bad-plugins-fisheye.other">
<ANCHOR id="gst-plugins-bad-plugins-fisheye.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fisheye.html#gst-plugins-bad-plugins-fisheye.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-fisheye.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fisheye.html#gst-plugins-bad-plugins-fisheye.description">
<ANCHOR id="gst-plugins-bad-plugins-fisheye.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fisheye.html#gst-plugins-bad-plugins-fisheye.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-fisheye.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fisheye.html#gst-plugins-bad-plugins-fisheye.other_details">
<ANCHOR id="GstFisheye-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fisheye.html#GstFisheye-struct">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#gst-plugins-bad-plugins-fpsdisplaysink.properties">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink.signals" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#gst-plugins-bad-plugins-fpsdisplaysink.signals">
<ANCHOR id="GstFPSDisplaySink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#gst-plugins-bad-plugins-fpsdisplaysink.other">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#gst-plugins-bad-plugins-fpsdisplaysink.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink.implemented-interfaces" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#gst-plugins-bad-plugins-fpsdisplaysink.implemented-interfaces">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#gst-plugins-bad-plugins-fpsdisplaysink.description">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#gst-plugins-bad-plugins-fpsdisplaysink.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#gst-plugins-bad-plugins-fpsdisplaysink.other_details">
<ANCHOR id="GstFPSDisplaySink-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink-struct">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#gst-plugins-bad-plugins-fpsdisplaysink.property-details">
<ANCHOR id="GstFPSDisplaySink--sync" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--sync">
<ANCHOR id="GstFPSDisplaySink--text-overlay" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--text-overlay">
<ANCHOR id="GstFPSDisplaySink--video-sink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--video-sink">
<ANCHOR id="GstFPSDisplaySink--fps-update-interval" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--fps-update-interval">
<ANCHOR id="GstFPSDisplaySink--max-fps" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--max-fps">
<ANCHOR id="GstFPSDisplaySink--min-fps" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--min-fps">
<ANCHOR id="GstFPSDisplaySink--signal-fps-measurements" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--signal-fps-measurements">
<ANCHOR id="GstFPSDisplaySink--frames-dropped" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--frames-dropped">
<ANCHOR id="GstFPSDisplaySink--frames-rendered" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--frames-rendered">
<ANCHOR id="GstFPSDisplaySink--last-message" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--last-message">
<ANCHOR id="GstFPSDisplaySink--silent" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink--silent">
<ANCHOR id="gst-plugins-bad-plugins-fpsdisplaysink.signal-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#gst-plugins-bad-plugins-fpsdisplaysink.signal-details">
<ANCHOR id="GstFPSDisplaySink-fps-measurements" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-fpsdisplaysink.html#GstFPSDisplaySink-fps-measurements">
<ANCHOR id="gst-plugins-bad-plugins-gaussianblur" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-gaussianblur.html">
<ANCHOR id="gst-plugins-bad-plugins-gaussianblur.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-gaussianblur.html#gst-plugins-bad-plugins-gaussianblur.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-gaussianblur.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-gaussianblur.html#gst-plugins-bad-plugins-gaussianblur.description">
<ANCHOR id="gst-plugins-bad-plugins-gaussianblur.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-gaussianblur.html#gst-plugins-bad-plugins-gaussianblur.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-gaussianblur.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-gaussianblur.html#gst-plugins-bad-plugins-gaussianblur.other_details">
<ANCHOR id="gst-plugins-bad-plugins-jpegparse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html">
<ANCHOR id="gst-plugins-bad-plugins-jpegparse.functions" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#gst-plugins-bad-plugins-jpegparse.functions">
<ANCHOR id="GstJpegParse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#GstJpegParse">
<ANCHOR id="gst-plugins-bad-plugins-jpegparse.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#gst-plugins-bad-plugins-jpegparse.other">
<ANCHOR id="gst-plugins-bad-plugins-jpegparse.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#gst-plugins-bad-plugins-jpegparse.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-jpegparse.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#gst-plugins-bad-plugins-jpegparse.description">
<ANCHOR id="gst-plugins-bad-plugins-jpegparse.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#gst-plugins-bad-plugins-jpegparse.functions_details">
<ANCHOR id="GST-JPEG-PARSE:CAPS" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#GST-JPEG-PARSE:CAPS">
<ANCHOR id="GST-JPEG-PARSE-CLASS:CAPS" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#GST-JPEG-PARSE-CLASS:CAPS">
<ANCHOR id="GST-IS-JPEG-PARSE:CAPS" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#GST-IS-JPEG-PARSE:CAPS">
<ANCHOR id="GST-IS-JPEG-PARSE-CLASS:CAPS" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#GST-IS-JPEG-PARSE-CLASS:CAPS">
<ANCHOR id="gst-jpeg-parse-get-type" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#gst-jpeg-parse-get-type">
<ANCHOR id="gst-plugins-bad-plugins-jpegparse.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#gst-plugins-bad-plugins-jpegparse.other_details">
<ANCHOR id="GstJpegParse-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#GstJpegParse-struct">
<ANCHOR id="GstJpegParseClass" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#GstJpegParseClass">
<ANCHOR id="GST-TYPE-JPEG-PARSE:CAPS" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-jpegparse.html#GST-TYPE-JPEG-PARSE:CAPS">
<ANCHOR id="gst-plugins-bad-plugins-kaleidoscope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html">
<ANCHOR id="gst-plugins-bad-plugins-kaleidoscope.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#gst-plugins-bad-plugins-kaleidoscope.properties">
<ANCHOR id="GstKaleidoscope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#GstKaleidoscope">
<ANCHOR id="gst-plugins-bad-plugins-kaleidoscope.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#gst-plugins-bad-plugins-kaleidoscope.other">
<ANCHOR id="gst-plugins-bad-plugins-kaleidoscope.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#gst-plugins-bad-plugins-kaleidoscope.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-kaleidoscope.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#gst-plugins-bad-plugins-kaleidoscope.description">
<ANCHOR id="gst-plugins-bad-plugins-kaleidoscope.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#gst-plugins-bad-plugins-kaleidoscope.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-kaleidoscope.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#gst-plugins-bad-plugins-kaleidoscope.other_details">
<ANCHOR id="GstKaleidoscope-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#GstKaleidoscope-struct">
<ANCHOR id="gst-plugins-bad-plugins-kaleidoscope.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#gst-plugins-bad-plugins-kaleidoscope.property-details">
<ANCHOR id="GstKaleidoscope--angle" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#GstKaleidoscope--angle">
<ANCHOR id="GstKaleidoscope--angle2" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#GstKaleidoscope--angle2">
<ANCHOR id="GstKaleidoscope--sides" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-kaleidoscope.html#GstKaleidoscope--sides">
<ANCHOR id="gst-plugins-bad-plugins-liveadder" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html">
<ANCHOR id="gst-plugins-bad-plugins-liveadder.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#gst-plugins-bad-plugins-liveadder.properties">
<ANCHOR id="GstLiveAdder" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#GstLiveAdder">
<ANCHOR id="gst-plugins-bad-plugins-liveadder.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#gst-plugins-bad-plugins-liveadder.other">
<ANCHOR id="gst-plugins-bad-plugins-liveadder.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#gst-plugins-bad-plugins-liveadder.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-liveadder.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#gst-plugins-bad-plugins-liveadder.description">
<ANCHOR id="gst-plugins-bad-plugins-liveadder.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#gst-plugins-bad-plugins-liveadder.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-liveadder.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#gst-plugins-bad-plugins-liveadder.other_details">
<ANCHOR id="GstLiveAdder-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#GstLiveAdder-struct">
<ANCHOR id="gst-plugins-bad-plugins-liveadder.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#gst-plugins-bad-plugins-liveadder.property-details">
<ANCHOR id="GstLiveAdder--latency" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#GstLiveAdder--latency">
<ANCHOR id="gst-plugins-bad-plugins-liveadder.see-also" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-liveadder.html#gst-plugins-bad-plugins-liveadder.see-also">
<ANCHOR id="gst-plugins-bad-plugins-marble" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html">
<ANCHOR id="gst-plugins-bad-plugins-marble.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#gst-plugins-bad-plugins-marble.properties">
<ANCHOR id="GstMarble" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#GstMarble">
<ANCHOR id="gst-plugins-bad-plugins-marble.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#gst-plugins-bad-plugins-marble.other">
<ANCHOR id="gst-plugins-bad-plugins-marble.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#gst-plugins-bad-plugins-marble.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-marble.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#gst-plugins-bad-plugins-marble.description">
<ANCHOR id="gst-plugins-bad-plugins-marble.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#gst-plugins-bad-plugins-marble.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-marble.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#gst-plugins-bad-plugins-marble.other_details">
<ANCHOR id="GstMarble-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#GstMarble-struct">
<ANCHOR id="gst-plugins-bad-plugins-marble.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#gst-plugins-bad-plugins-marble.property-details">
<ANCHOR id="GstMarble--amount" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#GstMarble--amount">
<ANCHOR id="GstMarble--turbulence" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#GstMarble--turbulence">
<ANCHOR id="GstMarble--x-scale" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#GstMarble--x-scale">
<ANCHOR id="GstMarble--y-scale" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-marble.html#GstMarble--y-scale">
<ANCHOR id="gst-plugins-bad-plugins-mimenc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html">
<ANCHOR id="gst-plugins-bad-plugins-mimenc.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html#gst-plugins-bad-plugins-mimenc.properties">
<ANCHOR id="GstMimEnc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html#GstMimEnc">
<ANCHOR id="gst-plugins-bad-plugins-mimenc.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html#gst-plugins-bad-plugins-mimenc.other">
<ANCHOR id="gst-plugins-bad-plugins-mimenc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html#gst-plugins-bad-plugins-mimenc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-mimenc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html#gst-plugins-bad-plugins-mimenc.description">
<ANCHOR id="gst-plugins-bad-plugins-mimenc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html#gst-plugins-bad-plugins-mimenc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-mimenc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html#gst-plugins-bad-plugins-mimenc.other_details">
<ANCHOR id="GstMimEnc-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html#GstMimEnc-struct">
<ANCHOR id="gst-plugins-bad-plugins-mimenc.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html#gst-plugins-bad-plugins-mimenc.property-details">
<ANCHOR id="GstMimEnc--paused-mode" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimenc.html#GstMimEnc--paused-mode">
<ANCHOR id="gst-plugins-bad-plugins-mimdec" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimdec.html">
<ANCHOR id="GstMimDec" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimdec.html#GstMimDec">
<ANCHOR id="gst-plugins-bad-plugins-mimdec.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimdec.html#gst-plugins-bad-plugins-mimdec.other">
<ANCHOR id="gst-plugins-bad-plugins-mimdec.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimdec.html#gst-plugins-bad-plugins-mimdec.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-mimdec.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimdec.html#gst-plugins-bad-plugins-mimdec.description">
<ANCHOR id="gst-plugins-bad-plugins-mimdec.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimdec.html#gst-plugins-bad-plugins-mimdec.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-mimdec.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimdec.html#gst-plugins-bad-plugins-mimdec.other_details">
<ANCHOR id="GstMimDec-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mimdec.html#GstMimDec-struct">
<ANCHOR id="gst-plugins-bad-plugins-mirror" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html">
<ANCHOR id="gst-plugins-bad-plugins-mirror.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html#gst-plugins-bad-plugins-mirror.properties">
<ANCHOR id="GstMirror" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html#GstMirror">
<ANCHOR id="gst-plugins-bad-plugins-mirror.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html#gst-plugins-bad-plugins-mirror.other">
<ANCHOR id="gst-plugins-bad-plugins-mirror.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html#gst-plugins-bad-plugins-mirror.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-mirror.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html#gst-plugins-bad-plugins-mirror.description">
<ANCHOR id="gst-plugins-bad-plugins-mirror.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html#gst-plugins-bad-plugins-mirror.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-mirror.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html#gst-plugins-bad-plugins-mirror.other_details">
<ANCHOR id="GstMirror-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html#GstMirror-struct">
<ANCHOR id="gst-plugins-bad-plugins-mirror.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html#gst-plugins-bad-plugins-mirror.property-details">
<ANCHOR id="GstMirror--mode" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mirror.html#GstMirror--mode">
<ANCHOR id="gst-plugins-bad-plugins-modplug" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html">
<ANCHOR id="gst-plugins-bad-plugins-modplug.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#gst-plugins-bad-plugins-modplug.properties">
<ANCHOR id="GstModPlug" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug">
<ANCHOR id="gst-plugins-bad-plugins-modplug.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#gst-plugins-bad-plugins-modplug.other">
<ANCHOR id="gst-plugins-bad-plugins-modplug.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#gst-plugins-bad-plugins-modplug.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-modplug.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#gst-plugins-bad-plugins-modplug.description">
<ANCHOR id="gst-plugins-bad-plugins-modplug.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#gst-plugins-bad-plugins-modplug.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-modplug.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#gst-plugins-bad-plugins-modplug.other_details">
<ANCHOR id="GstModPlug-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug-struct">
<ANCHOR id="gst-plugins-bad-plugins-modplug.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#gst-plugins-bad-plugins-modplug.property-details">
<ANCHOR id="GstModPlug--megabass" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--megabass">
<ANCHOR id="GstModPlug--megabass-amount" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--megabass-amount">
<ANCHOR id="GstModPlug--megabass-range" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--megabass-range">
<ANCHOR id="GstModPlug--noise-reduction" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--noise-reduction">
<ANCHOR id="GstModPlug--oversamp" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--oversamp">
<ANCHOR id="GstModPlug--reverb" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--reverb">
<ANCHOR id="GstModPlug--reverb-delay" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--reverb-delay">
<ANCHOR id="GstModPlug--reverb-depth" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--reverb-depth">
<ANCHOR id="GstModPlug--songname" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--songname">
<ANCHOR id="GstModPlug--surround" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--surround">
<ANCHOR id="GstModPlug--surround-delay" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--surround-delay">
<ANCHOR id="GstModPlug--surround-depth" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-modplug.html#GstModPlug--surround-depth">
<ANCHOR id="gst-plugins-bad-plugins-mpeg2enc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html">
<ANCHOR id="gst-plugins-bad-plugins-mpeg2enc.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#gst-plugins-bad-plugins-mpeg2enc.properties">
<ANCHOR id="GstMpeg2enc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc">
<ANCHOR id="gst-plugins-bad-plugins-mpeg2enc.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#gst-plugins-bad-plugins-mpeg2enc.other">
<ANCHOR id="gst-plugins-bad-plugins-mpeg2enc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#gst-plugins-bad-plugins-mpeg2enc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-mpeg2enc.implemented-interfaces" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#gst-plugins-bad-plugins-mpeg2enc.implemented-interfaces">
<ANCHOR id="gst-plugins-bad-plugins-mpeg2enc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#gst-plugins-bad-plugins-mpeg2enc.description">
<ANCHOR id="gst-plugins-bad-plugins-mpeg2enc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#gst-plugins-bad-plugins-mpeg2enc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-mpeg2enc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#gst-plugins-bad-plugins-mpeg2enc.other_details">
<ANCHOR id="GstMpeg2enc-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc-struct">
<ANCHOR id="gst-plugins-bad-plugins-mpeg2enc.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#gst-plugins-bad-plugins-mpeg2enc.property-details">
<ANCHOR id="GstMpeg2enc--altscan-mpeg2" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--altscan-mpeg2">
<ANCHOR id="GstMpeg2enc--aspect" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--aspect">
<ANCHOR id="GstMpeg2enc--b-per-refframe" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--b-per-refframe">
<ANCHOR id="GstMpeg2enc--bitrate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--bitrate">
<ANCHOR id="GstMpeg2enc--bufsize" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--bufsize">
<ANCHOR id="GstMpeg2enc--closed-gop" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--closed-gop">
<ANCHOR id="GstMpeg2enc--constraints" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--constraints">
<ANCHOR id="GstMpeg2enc--correct-svcd-hds" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--correct-svcd-hds">
<ANCHOR id="GstMpeg2enc--dualprime" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--dualprime">
<ANCHOR id="GstMpeg2enc--dummy-svcd-sof" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--dummy-svcd-sof">
<ANCHOR id="GstMpeg2enc--force-b-b-p" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--force-b-b-p">
<ANCHOR id="GstMpeg2enc--format" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--format">
<ANCHOR id="GstMpeg2enc--framerate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--framerate">
<ANCHOR id="GstMpeg2enc--interlace-mode" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--interlace-mode">
<ANCHOR id="GstMpeg2enc--intra-dc-prec" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--intra-dc-prec">
<ANCHOR id="GstMpeg2enc--keep-hf" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--keep-hf">
<ANCHOR id="GstMpeg2enc--max-gop-size" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--max-gop-size">
<ANCHOR id="GstMpeg2enc--min-gop-size" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--min-gop-size">
<ANCHOR id="GstMpeg2enc--motion-search-radius" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--motion-search-radius">
<ANCHOR id="GstMpeg2enc--non-video-bitrate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--non-video-bitrate">
<ANCHOR id="GstMpeg2enc--norm" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--norm">
<ANCHOR id="GstMpeg2enc--playback-field-order" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--playback-field-order">
<ANCHOR id="GstMpeg2enc--pulldown-3-2" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--pulldown-3-2">
<ANCHOR id="GstMpeg2enc--quant-matrix" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--quant-matrix">
<ANCHOR id="GstMpeg2enc--quant-reduction-max-var" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--quant-reduction-max-var">
<ANCHOR id="GstMpeg2enc--quantisation" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--quantisation">
<ANCHOR id="GstMpeg2enc--quantisation-reduction" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--quantisation-reduction">
<ANCHOR id="GstMpeg2enc--reduce-hf" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--reduce-hf">
<ANCHOR id="GstMpeg2enc--reduction-2x2" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--reduction-2x2">
<ANCHOR id="GstMpeg2enc--reduction-4x4" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--reduction-4x4">
<ANCHOR id="GstMpeg2enc--sequence-header-every-gop" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--sequence-header-every-gop">
<ANCHOR id="GstMpeg2enc--sequence-length" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--sequence-length">
<ANCHOR id="GstMpeg2enc--unit-coeff-elim" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--unit-coeff-elim">
<ANCHOR id="GstMpeg2enc--vcd-still-size" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpeg2enc.html#GstMpeg2enc--vcd-still-size">
<ANCHOR id="gst-plugins-bad-plugins-mplex" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html">
<ANCHOR id="gst-plugins-bad-plugins-mplex.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#gst-plugins-bad-plugins-mplex.properties">
<ANCHOR id="GstMplex" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#GstMplex">
<ANCHOR id="gst-plugins-bad-plugins-mplex.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#gst-plugins-bad-plugins-mplex.other">
<ANCHOR id="gst-plugins-bad-plugins-mplex.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#gst-plugins-bad-plugins-mplex.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-mplex.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#gst-plugins-bad-plugins-mplex.description">
<ANCHOR id="gst-plugins-bad-plugins-mplex.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#gst-plugins-bad-plugins-mplex.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-mplex.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#gst-plugins-bad-plugins-mplex.other_details">
<ANCHOR id="GstMplex-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#GstMplex-struct">
<ANCHOR id="gst-plugins-bad-plugins-mplex.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#gst-plugins-bad-plugins-mplex.property-details">
<ANCHOR id="GstMplex--bufsize" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#GstMplex--bufsize">
<ANCHOR id="GstMplex--format" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#GstMplex--format">
<ANCHOR id="GstMplex--mux-bitrate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#GstMplex--mux-bitrate">
<ANCHOR id="GstMplex--packets-per-pack" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#GstMplex--packets-per-pack">
<ANCHOR id="GstMplex--sector-size" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#GstMplex--sector-size">
<ANCHOR id="GstMplex--system-headers" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#GstMplex--system-headers">
<ANCHOR id="GstMplex--vbr" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mplex.html#GstMplex--vbr">
<ANCHOR id="gst-plugins-bad-plugins-mpg123audiodec" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpg123audiodec.html">
<ANCHOR id="GstMpg123AudioDec" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpg123audiodec.html#GstMpg123AudioDec">
<ANCHOR id="gst-plugins-bad-plugins-mpg123audiodec.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpg123audiodec.html#gst-plugins-bad-plugins-mpg123audiodec.other">
<ANCHOR id="gst-plugins-bad-plugins-mpg123audiodec.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpg123audiodec.html#gst-plugins-bad-plugins-mpg123audiodec.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-mpg123audiodec.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpg123audiodec.html#gst-plugins-bad-plugins-mpg123audiodec.description">
<ANCHOR id="gst-plugins-bad-plugins-mpg123audiodec.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpg123audiodec.html#gst-plugins-bad-plugins-mpg123audiodec.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-mpg123audiodec.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpg123audiodec.html#gst-plugins-bad-plugins-mpg123audiodec.other_details">
<ANCHOR id="GstMpg123AudioDec-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-mpg123audiodec.html#GstMpg123AudioDec-struct">
<ANCHOR id="gst-plugins-bad-plugins-neonhttpsrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html">
<ANCHOR id="gst-plugins-bad-plugins-neonhttpsrc.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#gst-plugins-bad-plugins-neonhttpsrc.properties">
<ANCHOR id="gst-plugins-bad-plugins-neonhttpsrc.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#gst-plugins-bad-plugins-neonhttpsrc.other">
<ANCHOR id="gst-plugins-bad-plugins-neonhttpsrc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#gst-plugins-bad-plugins-neonhttpsrc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-neonhttpsrc.implemented-interfaces" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#gst-plugins-bad-plugins-neonhttpsrc.implemented-interfaces">
<ANCHOR id="gst-plugins-bad-plugins-neonhttpsrc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#gst-plugins-bad-plugins-neonhttpsrc.description">
<ANCHOR id="gst-plugins-bad-plugins-neonhttpsrc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#gst-plugins-bad-plugins-neonhttpsrc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-neonhttpsrc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#gst-plugins-bad-plugins-neonhttpsrc.other_details">
<ANCHOR id="GstNeonhttpSrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc">
<ANCHOR id="gst-plugins-bad-plugins-neonhttpsrc.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#gst-plugins-bad-plugins-neonhttpsrc.property-details">
<ANCHOR id="GstNeonhttpSrc--location" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--location">
<ANCHOR id="GstNeonhttpSrc--proxy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--proxy">
<ANCHOR id="GstNeonhttpSrc--uri" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--uri">
<ANCHOR id="GstNeonhttpSrc--automatic-redirect" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--automatic-redirect">
<ANCHOR id="GstNeonhttpSrc--iradio-genre" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--iradio-genre">
<ANCHOR id="GstNeonhttpSrc--iradio-mode" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--iradio-mode">
<ANCHOR id="GstNeonhttpSrc--iradio-name" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--iradio-name">
<ANCHOR id="GstNeonhttpSrc--iradio-url" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--iradio-url">
<ANCHOR id="GstNeonhttpSrc--neon-http-debug" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--neon-http-debug">
<ANCHOR id="GstNeonhttpSrc--user-agent" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--user-agent">
<ANCHOR id="GstNeonhttpSrc--accept-self-signed" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--accept-self-signed">
<ANCHOR id="GstNeonhttpSrc--connect-timeout" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--connect-timeout">
<ANCHOR id="GstNeonhttpSrc--cookies" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--cookies">
<ANCHOR id="GstNeonhttpSrc--read-timeout" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-neonhttpsrc.html#GstNeonhttpSrc--read-timeout">
<ANCHOR id="gst-plugins-bad-plugins-ofa" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html">
<ANCHOR id="gst-plugins-bad-plugins-ofa.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html#gst-plugins-bad-plugins-ofa.properties">
<ANCHOR id="GstOFA" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html#GstOFA">
<ANCHOR id="gst-plugins-bad-plugins-ofa.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html#gst-plugins-bad-plugins-ofa.other">
<ANCHOR id="gst-plugins-bad-plugins-ofa.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html#gst-plugins-bad-plugins-ofa.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-ofa.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html#gst-plugins-bad-plugins-ofa.description">
<ANCHOR id="gst-plugins-bad-plugins-ofa.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html#gst-plugins-bad-plugins-ofa.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-ofa.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html#gst-plugins-bad-plugins-ofa.other_details">
<ANCHOR id="GstOFA-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html#GstOFA-struct">
<ANCHOR id="gst-plugins-bad-plugins-ofa.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html#gst-plugins-bad-plugins-ofa.property-details">
<ANCHOR id="GstOFA--fingerprint" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-ofa.html#GstOFA--fingerprint">
<ANCHOR id="gst-plugins-bad-plugins-openalsrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html">
<ANCHOR id="gst-plugins-bad-plugins-openalsrc.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#gst-plugins-bad-plugins-openalsrc.properties">
<ANCHOR id="GstOpenalSrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#GstOpenalSrc">
<ANCHOR id="gst-plugins-bad-plugins-openalsrc.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#gst-plugins-bad-plugins-openalsrc.other">
<ANCHOR id="gst-plugins-bad-plugins-openalsrc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#gst-plugins-bad-plugins-openalsrc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-openalsrc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#gst-plugins-bad-plugins-openalsrc.description">
<ANCHOR id="gst-plugins-bad-plugins-openalsrc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#gst-plugins-bad-plugins-openalsrc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-openalsrc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#gst-plugins-bad-plugins-openalsrc.other_details">
<ANCHOR id="GstOpenalSrc-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#GstOpenalSrc-struct">
<ANCHOR id="gst-plugins-bad-plugins-openalsrc.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#gst-plugins-bad-plugins-openalsrc.property-details">
<ANCHOR id="GstOpenalSrc--device" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#GstOpenalSrc--device">
<ANCHOR id="GstOpenalSrc--device-name" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsrc.html#GstOpenalSrc--device-name">
<ANCHOR id="gst-plugins-bad-plugins-openalsink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsink.html">
<ANCHOR id="gst-plugins-bad-plugins-openalsink.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsink.html#gst-plugins-bad-plugins-openalsink.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-openalsink.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsink.html#gst-plugins-bad-plugins-openalsink.description">
<ANCHOR id="gst-plugins-bad-plugins-openalsink.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsink.html#gst-plugins-bad-plugins-openalsink.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-openalsink.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-openalsink.html#gst-plugins-bad-plugins-openalsink.other_details">
<ANCHOR id="gst-plugins-bad-plugins-pcapparse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html">
<ANCHOR id="gst-plugins-bad-plugins-pcapparse.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#gst-plugins-bad-plugins-pcapparse.properties">
<ANCHOR id="GstPcapParse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#GstPcapParse">
<ANCHOR id="gst-plugins-bad-plugins-pcapparse.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#gst-plugins-bad-plugins-pcapparse.other">
<ANCHOR id="gst-plugins-bad-plugins-pcapparse.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#gst-plugins-bad-plugins-pcapparse.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-pcapparse.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#gst-plugins-bad-plugins-pcapparse.description">
<ANCHOR id="gst-plugins-bad-plugins-pcapparse.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#gst-plugins-bad-plugins-pcapparse.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-pcapparse.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#gst-plugins-bad-plugins-pcapparse.other_details">
<ANCHOR id="GstPcapParse-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#GstPcapParse-struct">
<ANCHOR id="gst-plugins-bad-plugins-pcapparse.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#gst-plugins-bad-plugins-pcapparse.property-details">
<ANCHOR id="GstPcapParse--dst-ip" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#GstPcapParse--dst-ip">
<ANCHOR id="GstPcapParse--dst-port" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#GstPcapParse--dst-port">
<ANCHOR id="GstPcapParse--src-ip" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#GstPcapParse--src-ip">
<ANCHOR id="GstPcapParse--src-port" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#GstPcapParse--src-port">
<ANCHOR id="GstPcapParse--caps" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#GstPcapParse--caps">
<ANCHOR id="GstPcapParse--ts-offset" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pcapparse.html#GstPcapParse--ts-offset">
<ANCHOR id="gst-plugins-bad-plugins-pinch" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html">
<ANCHOR id="gst-plugins-bad-plugins-pinch.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html#gst-plugins-bad-plugins-pinch.properties">
<ANCHOR id="GstPinch" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html#GstPinch">
<ANCHOR id="gst-plugins-bad-plugins-pinch.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html#gst-plugins-bad-plugins-pinch.other">
<ANCHOR id="gst-plugins-bad-plugins-pinch.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html#gst-plugins-bad-plugins-pinch.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-pinch.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html#gst-plugins-bad-plugins-pinch.description">
<ANCHOR id="gst-plugins-bad-plugins-pinch.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html#gst-plugins-bad-plugins-pinch.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-pinch.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html#gst-plugins-bad-plugins-pinch.other_details">
<ANCHOR id="GstPinch-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html#GstPinch-struct">
<ANCHOR id="gst-plugins-bad-plugins-pinch.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html#gst-plugins-bad-plugins-pinch.property-details">
<ANCHOR id="GstPinch--intensity" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pinch.html#GstPinch--intensity">
<ANCHOR id="gst-plugins-bad-plugins-pyramidsegment" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pyramidsegment.html">
<ANCHOR id="GstPinch" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pyramidsegment.html#GstPinch">
<ANCHOR id="gst-plugins-bad-plugins-pyramidsegment.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pyramidsegment.html#gst-plugins-bad-plugins-pyramidsegment.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-pyramidsegment.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pyramidsegment.html#gst-plugins-bad-plugins-pyramidsegment.description">
<ANCHOR id="gst-plugins-bad-plugins-pyramidsegment.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pyramidsegment.html#gst-plugins-bad-plugins-pyramidsegment.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-pyramidsegment.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-pyramidsegment.html#gst-plugins-bad-plugins-pyramidsegment.other_details">
<ANCHOR id="gst-plugins-bad-plugins-rfbsrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html">
<ANCHOR id="gst-plugins-bad-plugins-rfbsrc.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#gst-plugins-bad-plugins-rfbsrc.properties">
<ANCHOR id="GstRfbSrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc">
<ANCHOR id="gst-plugins-bad-plugins-rfbsrc.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#gst-plugins-bad-plugins-rfbsrc.other">
<ANCHOR id="gst-plugins-bad-plugins-rfbsrc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#gst-plugins-bad-plugins-rfbsrc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-rfbsrc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#gst-plugins-bad-plugins-rfbsrc.description">
<ANCHOR id="gst-plugins-bad-plugins-rfbsrc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#gst-plugins-bad-plugins-rfbsrc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-rfbsrc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#gst-plugins-bad-plugins-rfbsrc.other_details">
<ANCHOR id="GstRfbSrc-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc-struct">
<ANCHOR id="gst-plugins-bad-plugins-rfbsrc.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#gst-plugins-bad-plugins-rfbsrc.property-details">
<ANCHOR id="GstRfbSrc--host" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--host">
<ANCHOR id="GstRfbSrc--port" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--port">
<ANCHOR id="GstRfbSrc--password" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--password">
<ANCHOR id="GstRfbSrc--version" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--version">
<ANCHOR id="GstRfbSrc--height" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--height">
<ANCHOR id="GstRfbSrc--incremental" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--incremental">
<ANCHOR id="GstRfbSrc--offset-x" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--offset-x">
<ANCHOR id="GstRfbSrc--offset-y" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--offset-y">
<ANCHOR id="GstRfbSrc--width" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--width">
<ANCHOR id="GstRfbSrc--use-copyrect" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--use-copyrect">
<ANCHOR id="GstRfbSrc--shared" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--shared">
<ANCHOR id="GstRfbSrc--view-only" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rfbsrc.html#GstRfbSrc--view-only">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsink.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html#gst-plugins-bad-plugins-rtmpsink.properties">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsink.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html#gst-plugins-bad-plugins-rtmpsink.other">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsink.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html#gst-plugins-bad-plugins-rtmpsink.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsink.implemented-interfaces" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html#gst-plugins-bad-plugins-rtmpsink.implemented-interfaces">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsink.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html#gst-plugins-bad-plugins-rtmpsink.description">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsink.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html#gst-plugins-bad-plugins-rtmpsink.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsink.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html#gst-plugins-bad-plugins-rtmpsink.other_details">
<ANCHOR id="GstRTMPSink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html#GstRTMPSink">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsink.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html#gst-plugins-bad-plugins-rtmpsink.property-details">
<ANCHOR id="GstRTMPSink--location" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsink.html#GstRTMPSink--location">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsrc.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html#gst-plugins-bad-plugins-rtmpsrc.properties">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsrc.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html#gst-plugins-bad-plugins-rtmpsrc.other">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsrc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html#gst-plugins-bad-plugins-rtmpsrc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsrc.implemented-interfaces" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html#gst-plugins-bad-plugins-rtmpsrc.implemented-interfaces">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsrc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html#gst-plugins-bad-plugins-rtmpsrc.description">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsrc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html#gst-plugins-bad-plugins-rtmpsrc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsrc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html#gst-plugins-bad-plugins-rtmpsrc.other_details">
<ANCHOR id="GstRTMPSrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html#GstRTMPSrc">
<ANCHOR id="gst-plugins-bad-plugins-rtmpsrc.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html#gst-plugins-bad-plugins-rtmpsrc.property-details">
<ANCHOR id="GstRTMPSrc--location" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-rtmpsrc.html#GstRTMPSrc--location">
<ANCHOR id="gst-plugins-bad-plugins-shmsink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html">
<ANCHOR id="gst-plugins-bad-plugins-shmsink.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#gst-plugins-bad-plugins-shmsink.properties">
<ANCHOR id="gst-plugins-bad-plugins-shmsink.signals" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#gst-plugins-bad-plugins-shmsink.signals">
<ANCHOR id="GstShmSink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#GstShmSink">
<ANCHOR id="gst-plugins-bad-plugins-shmsink.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#gst-plugins-bad-plugins-shmsink.other">
<ANCHOR id="gst-plugins-bad-plugins-shmsink.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#gst-plugins-bad-plugins-shmsink.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-shmsink.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#gst-plugins-bad-plugins-shmsink.description">
<ANCHOR id="gst-plugins-bad-plugins-shmsink.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#gst-plugins-bad-plugins-shmsink.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-shmsink.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#gst-plugins-bad-plugins-shmsink.other_details">
<ANCHOR id="GstShmSink-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#GstShmSink-struct">
<ANCHOR id="gst-plugins-bad-plugins-shmsink.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#gst-plugins-bad-plugins-shmsink.property-details">
<ANCHOR id="GstShmSink--perms" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#GstShmSink--perms">
<ANCHOR id="GstShmSink--shm-size" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#GstShmSink--shm-size">
<ANCHOR id="GstShmSink--socket-path" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#GstShmSink--socket-path">
<ANCHOR id="GstShmSink--wait-for-connection" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#GstShmSink--wait-for-connection">
<ANCHOR id="GstShmSink--buffer-time" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#GstShmSink--buffer-time">
<ANCHOR id="gst-plugins-bad-plugins-shmsink.signal-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#gst-plugins-bad-plugins-shmsink.signal-details">
<ANCHOR id="GstShmSink-client-connected" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#GstShmSink-client-connected">
<ANCHOR id="GstShmSink-client-disconnected" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsink.html#GstShmSink-client-disconnected">
<ANCHOR id="gst-plugins-bad-plugins-shmsrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html">
<ANCHOR id="gst-plugins-bad-plugins-shmsrc.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#gst-plugins-bad-plugins-shmsrc.properties">
<ANCHOR id="GstShmSrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#GstShmSrc">
<ANCHOR id="gst-plugins-bad-plugins-shmsrc.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#gst-plugins-bad-plugins-shmsrc.other">
<ANCHOR id="gst-plugins-bad-plugins-shmsrc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#gst-plugins-bad-plugins-shmsrc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-shmsrc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#gst-plugins-bad-plugins-shmsrc.description">
<ANCHOR id="gst-plugins-bad-plugins-shmsrc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#gst-plugins-bad-plugins-shmsrc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-shmsrc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#gst-plugins-bad-plugins-shmsrc.other_details">
<ANCHOR id="GstShmSrc-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#GstShmSrc-struct">
<ANCHOR id="gst-plugins-bad-plugins-shmsrc.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#gst-plugins-bad-plugins-shmsrc.property-details">
<ANCHOR id="GstShmSrc--is-live" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#GstShmSrc--is-live">
<ANCHOR id="GstShmSrc--socket-path" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-shmsrc.html#GstShmSrc--socket-path">
<ANCHOR id="gst-plugins-bad-plugins-sdpdemux" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html">
<ANCHOR id="gst-plugins-bad-plugins-sdpdemux.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#gst-plugins-bad-plugins-sdpdemux.properties">
<ANCHOR id="GstSDPDemux" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#GstSDPDemux">
<ANCHOR id="gst-plugins-bad-plugins-sdpdemux.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#gst-plugins-bad-plugins-sdpdemux.other">
<ANCHOR id="gst-plugins-bad-plugins-sdpdemux.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#gst-plugins-bad-plugins-sdpdemux.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-sdpdemux.implemented-interfaces" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#gst-plugins-bad-plugins-sdpdemux.implemented-interfaces">
<ANCHOR id="gst-plugins-bad-plugins-sdpdemux.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#gst-plugins-bad-plugins-sdpdemux.description">
<ANCHOR id="gst-plugins-bad-plugins-sdpdemux.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#gst-plugins-bad-plugins-sdpdemux.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-sdpdemux.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#gst-plugins-bad-plugins-sdpdemux.other_details">
<ANCHOR id="GstSDPDemux-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#GstSDPDemux-struct">
<ANCHOR id="gst-plugins-bad-plugins-sdpdemux.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#gst-plugins-bad-plugins-sdpdemux.property-details">
<ANCHOR id="GstSDPDemux--debug" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#GstSDPDemux--debug">
<ANCHOR id="GstSDPDemux--latency" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#GstSDPDemux--latency">
<ANCHOR id="GstSDPDemux--timeout" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#GstSDPDemux--timeout">
<ANCHOR id="GstSDPDemux--redirect" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sdpdemux.html#GstSDPDemux--redirect">
<ANCHOR id="gst-plugins-bad-plugins-solarize" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html">
<ANCHOR id="gst-plugins-bad-plugins-solarize.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#gst-plugins-bad-plugins-solarize.properties">
<ANCHOR id="GstSolarize" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#GstSolarize">
<ANCHOR id="gst-plugins-bad-plugins-solarize.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#gst-plugins-bad-plugins-solarize.other">
<ANCHOR id="gst-plugins-bad-plugins-solarize.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#gst-plugins-bad-plugins-solarize.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-solarize.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#gst-plugins-bad-plugins-solarize.description">
<ANCHOR id="gst-plugins-bad-plugins-solarize.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#gst-plugins-bad-plugins-solarize.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-solarize.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#gst-plugins-bad-plugins-solarize.other_details">
<ANCHOR id="GstSolarize-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#GstSolarize-struct">
<ANCHOR id="gst-plugins-bad-plugins-solarize.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#gst-plugins-bad-plugins-solarize.property-details">
<ANCHOR id="GstSolarize--silent" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#GstSolarize--silent">
<ANCHOR id="GstSolarize--end" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#GstSolarize--end">
<ANCHOR id="GstSolarize--start" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#GstSolarize--start">
<ANCHOR id="GstSolarize--threshold" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-solarize.html#GstSolarize--threshold">
<ANCHOR id="gst-plugins-bad-plugins-spacescope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html">
<ANCHOR id="gst-plugins-bad-plugins-spacescope.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#gst-plugins-bad-plugins-spacescope.properties">
<ANCHOR id="GstSpaceScope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#GstSpaceScope">
<ANCHOR id="gst-plugins-bad-plugins-spacescope.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#gst-plugins-bad-plugins-spacescope.other">
<ANCHOR id="gst-plugins-bad-plugins-spacescope.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#gst-plugins-bad-plugins-spacescope.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-spacescope.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#gst-plugins-bad-plugins-spacescope.description">
<ANCHOR id="gst-plugins-bad-plugins-spacescope.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#gst-plugins-bad-plugins-spacescope.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-spacescope.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#gst-plugins-bad-plugins-spacescope.other_details">
<ANCHOR id="GstSpaceScope-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#GstSpaceScope-struct">
<ANCHOR id="gst-plugins-bad-plugins-spacescope.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#gst-plugins-bad-plugins-spacescope.property-details">
<ANCHOR id="GstSpaceScope--style" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#GstSpaceScope--style">
<ANCHOR id="gst-plugins-bad-plugins-spacescope.see-also" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spacescope.html#gst-plugins-bad-plugins-spacescope.see-also">
<ANCHOR id="gst-plugins-bad-plugins-spectrascope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spectrascope.html">
<ANCHOR id="GstSpectraScope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spectrascope.html#GstSpectraScope">
<ANCHOR id="gst-plugins-bad-plugins-spectrascope.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spectrascope.html#gst-plugins-bad-plugins-spectrascope.other">
<ANCHOR id="gst-plugins-bad-plugins-spectrascope.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spectrascope.html#gst-plugins-bad-plugins-spectrascope.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-spectrascope.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spectrascope.html#gst-plugins-bad-plugins-spectrascope.description">
<ANCHOR id="gst-plugins-bad-plugins-spectrascope.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spectrascope.html#gst-plugins-bad-plugins-spectrascope.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-spectrascope.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spectrascope.html#gst-plugins-bad-plugins-spectrascope.other_details">
<ANCHOR id="GstSpectraScope-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spectrascope.html#GstSpectraScope-struct">
<ANCHOR id="gst-plugins-bad-plugins-spectrascope.see-also" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-spectrascope.html#gst-plugins-bad-plugins-spectrascope.see-also">
<ANCHOR id="gst-plugins-bad-plugins-synaescope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-synaescope.html">
<ANCHOR id="GstSynaeScope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-synaescope.html#GstSynaeScope">
<ANCHOR id="gst-plugins-bad-plugins-synaescope.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-synaescope.html#gst-plugins-bad-plugins-synaescope.other">
<ANCHOR id="gst-plugins-bad-plugins-synaescope.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-synaescope.html#gst-plugins-bad-plugins-synaescope.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-synaescope.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-synaescope.html#gst-plugins-bad-plugins-synaescope.description">
<ANCHOR id="gst-plugins-bad-plugins-synaescope.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-synaescope.html#gst-plugins-bad-plugins-synaescope.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-synaescope.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-synaescope.html#gst-plugins-bad-plugins-synaescope.other_details">
<ANCHOR id="GstSynaeScope-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-synaescope.html#GstSynaeScope-struct">
<ANCHOR id="gst-plugins-bad-plugins-synaescope.see-also" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-synaescope.html#gst-plugins-bad-plugins-synaescope.see-also">
<ANCHOR id="gst-plugins-bad-plugins-speed" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html">
<ANCHOR id="gst-plugins-bad-plugins-speed.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html#gst-plugins-bad-plugins-speed.properties">
<ANCHOR id="GstSpeed" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html#GstSpeed">
<ANCHOR id="gst-plugins-bad-plugins-speed.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html#gst-plugins-bad-plugins-speed.other">
<ANCHOR id="gst-plugins-bad-plugins-speed.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html#gst-plugins-bad-plugins-speed.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-speed.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html#gst-plugins-bad-plugins-speed.description">
<ANCHOR id="gst-plugins-bad-plugins-speed.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html#gst-plugins-bad-plugins-speed.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-speed.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html#gst-plugins-bad-plugins-speed.other_details">
<ANCHOR id="GstSpeed-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html#GstSpeed-struct">
<ANCHOR id="gst-plugins-bad-plugins-speed.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html#gst-plugins-bad-plugins-speed.property-details">
<ANCHOR id="GstSpeed--speed" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-speed.html#GstSpeed--speed">
<ANCHOR id="gst-plugins-bad-plugins-sphere" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html">
<ANCHOR id="gst-plugins-bad-plugins-sphere.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html#gst-plugins-bad-plugins-sphere.properties">
<ANCHOR id="GstSphere" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html#GstSphere">
<ANCHOR id="gst-plugins-bad-plugins-sphere.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html#gst-plugins-bad-plugins-sphere.other">
<ANCHOR id="gst-plugins-bad-plugins-sphere.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html#gst-plugins-bad-plugins-sphere.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-sphere.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html#gst-plugins-bad-plugins-sphere.description">
<ANCHOR id="gst-plugins-bad-plugins-sphere.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html#gst-plugins-bad-plugins-sphere.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-sphere.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html#gst-plugins-bad-plugins-sphere.other_details">
<ANCHOR id="GstSphere-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html#GstSphere-struct">
<ANCHOR id="gst-plugins-bad-plugins-sphere.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html#gst-plugins-bad-plugins-sphere.property-details">
<ANCHOR id="GstSphere--refraction" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-sphere.html#GstSphere--refraction">
<ANCHOR id="gst-plugins-bad-plugins-square" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html">
<ANCHOR id="gst-plugins-bad-plugins-square.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#gst-plugins-bad-plugins-square.properties">
<ANCHOR id="GstSquare" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#GstSquare">
<ANCHOR id="gst-plugins-bad-plugins-square.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#gst-plugins-bad-plugins-square.other">
<ANCHOR id="gst-plugins-bad-plugins-square.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#gst-plugins-bad-plugins-square.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-square.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#gst-plugins-bad-plugins-square.description">
<ANCHOR id="gst-plugins-bad-plugins-square.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#gst-plugins-bad-plugins-square.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-square.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#gst-plugins-bad-plugins-square.other_details">
<ANCHOR id="GstSquare-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#GstSquare-struct">
<ANCHOR id="gst-plugins-bad-plugins-square.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#gst-plugins-bad-plugins-square.property-details">
<ANCHOR id="GstSquare--height" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#GstSquare--height">
<ANCHOR id="GstSquare--width" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#GstSquare--width">
<ANCHOR id="GstSquare--zoom" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-square.html#GstSquare--zoom">
<ANCHOR id="gst-plugins-bad-plugins-stretch" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html">
<ANCHOR id="gst-plugins-bad-plugins-stretch.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html#gst-plugins-bad-plugins-stretch.properties">
<ANCHOR id="GstStretch" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html#GstStretch">
<ANCHOR id="gst-plugins-bad-plugins-stretch.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html#gst-plugins-bad-plugins-stretch.other">
<ANCHOR id="gst-plugins-bad-plugins-stretch.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html#gst-plugins-bad-plugins-stretch.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-stretch.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html#gst-plugins-bad-plugins-stretch.description">
<ANCHOR id="gst-plugins-bad-plugins-stretch.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html#gst-plugins-bad-plugins-stretch.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-stretch.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html#gst-plugins-bad-plugins-stretch.other_details">
<ANCHOR id="GstStretch-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html#GstStretch-struct">
<ANCHOR id="gst-plugins-bad-plugins-stretch.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html#gst-plugins-bad-plugins-stretch.property-details">
<ANCHOR id="GstStretch--intensity" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-stretch.html#GstStretch--intensity">
<ANCHOR id="gst-plugins-bad-plugins-templatematch" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html">
<ANCHOR id="gst-plugins-bad-plugins-templatematch.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#gst-plugins-bad-plugins-templatematch.properties">
<ANCHOR id="GstSynaeScope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#GstSynaeScope">
<ANCHOR id="GstTemplateMatch" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#GstTemplateMatch">
<ANCHOR id="gst-plugins-bad-plugins-templatematch.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#gst-plugins-bad-plugins-templatematch.other">
<ANCHOR id="gst-plugins-bad-plugins-templatematch.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#gst-plugins-bad-plugins-templatematch.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-templatematch.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#gst-plugins-bad-plugins-templatematch.description">
<ANCHOR id="gst-plugins-bad-plugins-templatematch.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#gst-plugins-bad-plugins-templatematch.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-templatematch.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#gst-plugins-bad-plugins-templatematch.other_details">
<ANCHOR id="GstTemplateMatch-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#GstTemplateMatch-struct">
<ANCHOR id="gst-plugins-bad-plugins-templatematch.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#gst-plugins-bad-plugins-templatematch.property-details">
<ANCHOR id="GstTemplateMatch--display" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#GstTemplateMatch--display">
<ANCHOR id="GstTemplateMatch--method" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#GstTemplateMatch--method">
<ANCHOR id="GstTemplateMatch--template" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-templatematch.html#GstTemplateMatch--template">
<ANCHOR id="gst-plugins-bad-plugins-opencvtextoverlay" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html">
<ANCHOR id="gst-plugins-bad-plugins-opencvtextoverlay.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#gst-plugins-bad-plugins-opencvtextoverlay.properties">
<ANCHOR id="GstOpenalSrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpenalSrc">
<ANCHOR id="GstOpencvTextOverlay" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay">
<ANCHOR id="gst-plugins-bad-plugins-opencvtextoverlay.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#gst-plugins-bad-plugins-opencvtextoverlay.other">
<ANCHOR id="gst-plugins-bad-plugins-opencvtextoverlay.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#gst-plugins-bad-plugins-opencvtextoverlay.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-opencvtextoverlay.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#gst-plugins-bad-plugins-opencvtextoverlay.description">
<ANCHOR id="gst-plugins-bad-plugins-opencvtextoverlay.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#gst-plugins-bad-plugins-opencvtextoverlay.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-opencvtextoverlay.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#gst-plugins-bad-plugins-opencvtextoverlay.other_details">
<ANCHOR id="GstOpencvTextOverlay-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay-struct">
<ANCHOR id="gst-plugins-bad-plugins-opencvtextoverlay.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#gst-plugins-bad-plugins-opencvtextoverlay.property-details">
<ANCHOR id="GstOpencvTextOverlay--colorB" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay--colorB">
<ANCHOR id="GstOpencvTextOverlay--colorG" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay--colorG">
<ANCHOR id="GstOpencvTextOverlay--colorR" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay--colorR">
<ANCHOR id="GstOpencvTextOverlay--height" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay--height">
<ANCHOR id="GstOpencvTextOverlay--text" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay--text">
<ANCHOR id="GstOpencvTextOverlay--thickness" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay--thickness">
<ANCHOR id="GstOpencvTextOverlay--width" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay--width">
<ANCHOR id="GstOpencvTextOverlay--xpos" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay--xpos">
<ANCHOR id="GstOpencvTextOverlay--ypos" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-opencvtextoverlay.html#GstOpencvTextOverlay--ypos">
<ANCHOR id="gst-plugins-bad-plugins-tunnel" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-tunnel.html">
<ANCHOR id="GstTunnel" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-tunnel.html#GstTunnel">
<ANCHOR id="gst-plugins-bad-plugins-tunnel.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-tunnel.html#gst-plugins-bad-plugins-tunnel.other">
<ANCHOR id="gst-plugins-bad-plugins-tunnel.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-tunnel.html#gst-plugins-bad-plugins-tunnel.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-tunnel.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-tunnel.html#gst-plugins-bad-plugins-tunnel.description">
<ANCHOR id="gst-plugins-bad-plugins-tunnel.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-tunnel.html#gst-plugins-bad-plugins-tunnel.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-tunnel.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-tunnel.html#gst-plugins-bad-plugins-tunnel.other_details">
<ANCHOR id="GstTunnel-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-tunnel.html#GstTunnel-struct">
<ANCHOR id="gst-plugins-bad-plugins-twirl" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html">
<ANCHOR id="gst-plugins-bad-plugins-twirl.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html#gst-plugins-bad-plugins-twirl.properties">
<ANCHOR id="GstTwirl" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html#GstTwirl">
<ANCHOR id="gst-plugins-bad-plugins-twirl.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html#gst-plugins-bad-plugins-twirl.other">
<ANCHOR id="gst-plugins-bad-plugins-twirl.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html#gst-plugins-bad-plugins-twirl.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-twirl.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html#gst-plugins-bad-plugins-twirl.description">
<ANCHOR id="gst-plugins-bad-plugins-twirl.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html#gst-plugins-bad-plugins-twirl.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-twirl.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html#gst-plugins-bad-plugins-twirl.other_details">
<ANCHOR id="GstTwirl-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html#GstTwirl-struct">
<ANCHOR id="gst-plugins-bad-plugins-twirl.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html#gst-plugins-bad-plugins-twirl.property-details">
<ANCHOR id="GstTwirl--angle" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-twirl.html#GstTwirl--angle">
<ANCHOR id="gst-plugins-bad-plugins-videoparse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html">
<ANCHOR id="gst-plugins-bad-plugins-videoparse.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#gst-plugins-bad-plugins-videoparse.properties">
<ANCHOR id="GstVideoParse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse">
<ANCHOR id="gst-plugins-bad-plugins-videoparse.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#gst-plugins-bad-plugins-videoparse.other">
<ANCHOR id="gst-plugins-bad-plugins-videoparse.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#gst-plugins-bad-plugins-videoparse.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-videoparse.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#gst-plugins-bad-plugins-videoparse.description">
<ANCHOR id="gst-plugins-bad-plugins-videoparse.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#gst-plugins-bad-plugins-videoparse.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-videoparse.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#gst-plugins-bad-plugins-videoparse.other_details">
<ANCHOR id="GstVideoParse-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse-struct">
<ANCHOR id="gst-plugins-bad-plugins-videoparse.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#gst-plugins-bad-plugins-videoparse.property-details">
<ANCHOR id="GstVideoParse--alpha-mask" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--alpha-mask">
<ANCHOR id="GstVideoParse--blue-mask" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--blue-mask">
<ANCHOR id="GstVideoParse--bpp" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--bpp">
<ANCHOR id="GstVideoParse--depth" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--depth">
<ANCHOR id="GstVideoParse--endianness" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--endianness">
<ANCHOR id="GstVideoParse--format" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--format">
<ANCHOR id="GstVideoParse--framerate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--framerate">
<ANCHOR id="GstVideoParse--green-mask" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--green-mask">
<ANCHOR id="GstVideoParse--height" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--height">
<ANCHOR id="GstVideoParse--pixel-aspect-ratio" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--pixel-aspect-ratio">
<ANCHOR id="GstVideoParse--red-mask" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--red-mask">
<ANCHOR id="GstVideoParse--width" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--width">
<ANCHOR id="GstVideoParse--interlaced" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--interlaced">
<ANCHOR id="GstVideoParse--top-field-first" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-videoparse.html#GstVideoParse--top-field-first">
<ANCHOR id="gst-plugins-bad-plugins-waterripple" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html">
<ANCHOR id="gst-plugins-bad-plugins-waterripple.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#gst-plugins-bad-plugins-waterripple.properties">
<ANCHOR id="GstWaterRipple" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#GstWaterRipple">
<ANCHOR id="gst-plugins-bad-plugins-waterripple.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#gst-plugins-bad-plugins-waterripple.other">
<ANCHOR id="gst-plugins-bad-plugins-waterripple.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#gst-plugins-bad-plugins-waterripple.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-waterripple.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#gst-plugins-bad-plugins-waterripple.description">
<ANCHOR id="gst-plugins-bad-plugins-waterripple.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#gst-plugins-bad-plugins-waterripple.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-waterripple.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#gst-plugins-bad-plugins-waterripple.other_details">
<ANCHOR id="GstWaterRipple-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#GstWaterRipple-struct">
<ANCHOR id="gst-plugins-bad-plugins-waterripple.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#gst-plugins-bad-plugins-waterripple.property-details">
<ANCHOR id="GstWaterRipple--amplitude" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#GstWaterRipple--amplitude">
<ANCHOR id="GstWaterRipple--phase" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#GstWaterRipple--phase">
<ANCHOR id="GstWaterRipple--wavelength" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-waterripple.html#GstWaterRipple--wavelength">
<ANCHOR id="gst-plugins-bad-plugins-zbar" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html">
<ANCHOR id="gst-plugins-bad-plugins-zbar.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#gst-plugins-bad-plugins-zbar.properties">
<ANCHOR id="GstZBar" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#GstZBar">
<ANCHOR id="gst-plugins-bad-plugins-zbar.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#gst-plugins-bad-plugins-zbar.other">
<ANCHOR id="gst-plugins-bad-plugins-zbar.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#gst-plugins-bad-plugins-zbar.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-zbar.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#gst-plugins-bad-plugins-zbar.description">
<ANCHOR id="gst-plugins-bad-plugins-zbar.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#gst-plugins-bad-plugins-zbar.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-zbar.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#gst-plugins-bad-plugins-zbar.other_details">
<ANCHOR id="GstZBar-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#GstZBar-struct">
<ANCHOR id="gst-plugins-bad-plugins-zbar.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#gst-plugins-bad-plugins-zbar.property-details">
<ANCHOR id="GstZBar--message" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#GstZBar--message">
<ANCHOR id="GstZBar--cache" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-zbar.html#GstZBar--cache">
<ANCHOR id="gst-plugins-bad-plugins-voaacenc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html">
<ANCHOR id="gst-plugins-bad-plugins-voaacenc.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#gst-plugins-bad-plugins-voaacenc.properties">
<ANCHOR id="GstVoAacEnc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#GstVoAacEnc">
<ANCHOR id="gst-plugins-bad-plugins-voaacenc.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#gst-plugins-bad-plugins-voaacenc.other">
<ANCHOR id="gst-plugins-bad-plugins-voaacenc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#gst-plugins-bad-plugins-voaacenc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-voaacenc.implemented-interfaces" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#gst-plugins-bad-plugins-voaacenc.implemented-interfaces">
<ANCHOR id="gst-plugins-bad-plugins-voaacenc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#gst-plugins-bad-plugins-voaacenc.description">
<ANCHOR id="gst-plugins-bad-plugins-voaacenc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#gst-plugins-bad-plugins-voaacenc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-voaacenc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#gst-plugins-bad-plugins-voaacenc.other_details">
<ANCHOR id="GstVoAacEnc-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#GstVoAacEnc-struct">
<ANCHOR id="gst-plugins-bad-plugins-voaacenc.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#gst-plugins-bad-plugins-voaacenc.property-details">
<ANCHOR id="GstVoAacEnc--bitrate" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voaacenc.html#GstVoAacEnc--bitrate">
<ANCHOR id="gst-plugins-bad-plugins-voamrwbenc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voamrwbenc.html">
<ANCHOR id="gst-plugins-bad-plugins-voamrwbenc.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voamrwbenc.html#gst-plugins-bad-plugins-voamrwbenc.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-voamrwbenc.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voamrwbenc.html#gst-plugins-bad-plugins-voamrwbenc.description">
<ANCHOR id="gst-plugins-bad-plugins-voamrwbenc.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voamrwbenc.html#gst-plugins-bad-plugins-voamrwbenc.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-voamrwbenc.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-voamrwbenc.html#gst-plugins-bad-plugins-voamrwbenc.other_details">
<ANCHOR id="gst-plugins-bad-plugins-wavescope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html">
<ANCHOR id="gst-plugins-bad-plugins-wavescope.properties" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#gst-plugins-bad-plugins-wavescope.properties">
<ANCHOR id="GstWaveScope" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#GstWaveScope">
<ANCHOR id="gst-plugins-bad-plugins-wavescope.other" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#gst-plugins-bad-plugins-wavescope.other">
<ANCHOR id="gst-plugins-bad-plugins-wavescope.object-hierarchy" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#gst-plugins-bad-plugins-wavescope.object-hierarchy">
<ANCHOR id="gst-plugins-bad-plugins-wavescope.description" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#gst-plugins-bad-plugins-wavescope.description">
<ANCHOR id="gst-plugins-bad-plugins-wavescope.functions_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#gst-plugins-bad-plugins-wavescope.functions_details">
<ANCHOR id="gst-plugins-bad-plugins-wavescope.other_details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#gst-plugins-bad-plugins-wavescope.other_details">
<ANCHOR id="GstWaveScope-struct" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#GstWaveScope-struct">
<ANCHOR id="gst-plugins-bad-plugins-wavescope.property-details" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#gst-plugins-bad-plugins-wavescope.property-details">
<ANCHOR id="GstWaveScope--style" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#GstWaveScope--style">
<ANCHOR id="gst-plugins-bad-plugins-wavescope.see-also" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-wavescope.html#gst-plugins-bad-plugins-wavescope.see-also">
<ANCHOR id="gst-plugins-bad-plugins-plugin-audiovisualizers" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-audiovisualizers.html">
<ANCHOR id="plugin-audiovisualizers" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-audiovisualizers.html#plugin-audiovisualizers">
<ANCHOR id="gst-plugins-bad-plugins-plugin-autoconvert" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-autoconvert.html">
<ANCHOR id="plugin-autoconvert" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-autoconvert.html#plugin-autoconvert">
<ANCHOR id="gst-plugins-bad-plugins-plugin-assrender" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-assrender.html">
<ANCHOR id="plugin-assrender" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-assrender.html#plugin-assrender">
<ANCHOR id="gst-plugins-bad-plugins-plugin-bayer" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-bayer.html">
<ANCHOR id="plugin-bayer" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-bayer.html#plugin-bayer">
<ANCHOR id="gst-plugins-bad-plugins-plugin-bz2" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-bz2.html">
<ANCHOR id="plugin-bz2" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-bz2.html#plugin-bz2">
<ANCHOR id="gst-plugins-bad-plugins-plugin-camerabin" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-camerabin.html">
<ANCHOR id="plugin-camerabin" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-camerabin.html#plugin-camerabin">
<ANCHOR id="gst-plugins-bad-plugins-plugin-coloreffects" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-coloreffects.html">
<ANCHOR id="plugin-coloreffects" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-coloreffects.html#plugin-coloreffects">
<ANCHOR id="gst-plugins-bad-plugins-plugin-curl" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-curl.html">
<ANCHOR id="plugin-curl" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-curl.html#plugin-curl">
<ANCHOR id="gst-plugins-bad-plugins-plugin-dataurisrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-dataurisrc.html">
<ANCHOR id="plugin-dataurisrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-dataurisrc.html#plugin-dataurisrc">
<ANCHOR id="gst-plugins-bad-plugins-plugin-debugutilsbad" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-debugutilsbad.html">
<ANCHOR id="plugin-debugutilsbad" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-debugutilsbad.html#plugin-debugutilsbad">
<ANCHOR id="gst-plugins-bad-plugins-plugin-dtsdec" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-dtsdec.html">
<ANCHOR id="plugin-dtsdec" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-dtsdec.html#plugin-dtsdec">
<ANCHOR id="gst-plugins-bad-plugins-plugin-dvb" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-dvb.html">
<ANCHOR id="plugin-dvb" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-dvb.html#plugin-dvb">
<ANCHOR id="gst-plugins-bad-plugins-plugin-dvdspu" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-dvdspu.html">
<ANCHOR id="plugin-dvdspu" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-dvdspu.html#plugin-dvdspu">
<ANCHOR id="gst-plugins-bad-plugins-plugin-eglglessink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-eglglessink.html">
<ANCHOR id="plugin-eglglessink" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-eglglessink.html#plugin-eglglessink">
<ANCHOR id="gst-plugins-bad-plugins-plugin-faac" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-faac.html">
<ANCHOR id="plugin-faac" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-faac.html#plugin-faac">
<ANCHOR id="gst-plugins-bad-plugins-plugin-faad" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-faad.html">
<ANCHOR id="plugin-faad" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-faad.html#plugin-faad">
<ANCHOR id="gst-plugins-bad-plugins-plugin-festival" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-festival.html">
<ANCHOR id="plugin-festival" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-festival.html#plugin-festival">
<ANCHOR id="gst-plugins-bad-plugins-plugin-gaudieffects" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-gaudieffects.html">
<ANCHOR id="plugin-gaudieffects" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-gaudieffects.html#plugin-gaudieffects">
<ANCHOR id="gst-plugins-bad-plugins-plugin-geometrictransform" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-geometrictransform.html">
<ANCHOR id="plugin-geometrictransform" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-geometrictransform.html#plugin-geometrictransform">
<ANCHOR id="gst-plugins-bad-plugins-plugin-gsm" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-gsm.html">
<ANCHOR id="plugin-gsm" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-gsm.html#plugin-gsm">
<ANCHOR id="gst-plugins-bad-plugins-plugin-jpegformat" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-jpegformat.html">
<ANCHOR id="plugin-jpegformat" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-jpegformat.html#plugin-jpegformat">
<ANCHOR id="gst-plugins-bad-plugins-plugin-liveadder" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-liveadder.html">
<ANCHOR id="plugin-liveadder" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-liveadder.html#plugin-liveadder">
<ANCHOR id="gst-plugins-bad-plugins-plugin-mimic" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-mimic.html">
<ANCHOR id="plugin-mimic" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-mimic.html#plugin-mimic">
<ANCHOR id="gst-plugins-bad-plugins-plugin-mms" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-mms.html">
<ANCHOR id="plugin-mms" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-mms.html#plugin-mms">
<ANCHOR id="gst-plugins-bad-plugins-plugin-modplug" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-modplug.html">
<ANCHOR id="plugin-modplug" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-modplug.html#plugin-modplug">
<ANCHOR id="gst-plugins-bad-plugins-plugin-mpeg2enc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-mpeg2enc.html">
<ANCHOR id="plugin-mpeg2enc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-mpeg2enc.html#plugin-mpeg2enc">
<ANCHOR id="gst-plugins-bad-plugins-plugin-mpegtsmux" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-mpegtsmux.html">
<ANCHOR id="plugin-mpegtsmux" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-mpegtsmux.html#plugin-mpegtsmux">
<ANCHOR id="gst-plugins-bad-plugins-plugin-mplex" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-mplex.html">
<ANCHOR id="plugin-mplex" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-mplex.html#plugin-mplex">
<ANCHOR id="gst-plugins-bad-plugins-plugin-neon" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-neon.html">
<ANCHOR id="plugin-neon" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-neon.html#plugin-neon">
<ANCHOR id="gst-plugins-bad-plugins-plugin-ofa" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-ofa.html">
<ANCHOR id="plugin-ofa" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-ofa.html#plugin-ofa">
<ANCHOR id="gst-plugins-bad-plugins-plugin-openal" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-openal.html">
<ANCHOR id="plugin-openal" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-openal.html#plugin-openal">
<ANCHOR id="gst-plugins-bad-plugins-plugin-opencv" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-opencv.html">
<ANCHOR id="plugin-opencv" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-opencv.html#plugin-opencv">
<ANCHOR id="gst-plugins-bad-plugins-plugin-pcapparse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-pcapparse.html">
<ANCHOR id="plugin-pcapparse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-pcapparse.html#plugin-pcapparse">
<ANCHOR id="gst-plugins-bad-plugins-plugin-rawparse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-rawparse.html">
<ANCHOR id="plugin-rawparse" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-rawparse.html#plugin-rawparse">
<ANCHOR id="gst-plugins-bad-plugins-plugin-rfbsrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-rfbsrc.html">
<ANCHOR id="plugin-rfbsrc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-rfbsrc.html#plugin-rfbsrc">
<ANCHOR id="gst-plugins-bad-plugins-plugin-rtmp" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-rtmp.html">
<ANCHOR id="plugin-rtmp" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-rtmp.html#plugin-rtmp">
<ANCHOR id="gst-plugins-bad-plugins-plugin-sdp" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-sdp.html">
<ANCHOR id="plugin-sdp" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-sdp.html#plugin-sdp">
<ANCHOR id="gst-plugins-bad-plugins-plugin-shm" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-shm.html">
<ANCHOR id="plugin-shm" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-shm.html#plugin-shm">
<ANCHOR id="gst-plugins-bad-plugins-plugin-soundtouch" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-soundtouch.html">
<ANCHOR id="plugin-soundtouch" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-soundtouch.html#plugin-soundtouch">
<ANCHOR id="gst-plugins-bad-plugins-plugin-speed" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-speed.html">
<ANCHOR id="plugin-speed" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-speed.html#plugin-speed">
<ANCHOR id="gst-plugins-bad-plugins-plugin-voaacenc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-voaacenc.html">
<ANCHOR id="plugin-voaacenc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-voaacenc.html#plugin-voaacenc">
<ANCHOR id="gst-plugins-bad-plugins-plugin-voamrwbenc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-voamrwbenc.html">
<ANCHOR id="plugin-voamrwbenc" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-voamrwbenc.html#plugin-voamrwbenc">
<ANCHOR id="gst-plugins-bad-plugins-plugin-zbar" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-zbar.html">
<ANCHOR id="plugin-zbar" href="gst-plugins-bad-plugins-1.0/gst-plugins-bad-plugins-plugin-zbar.html#plugin-zbar">
<ANCHOR id="GstPhotography" href="gst-plugins-bad-plugins-1.0/GstPhotography.html">
<ANCHOR id="GstPhotography.functions" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography.functions">
<ANCHOR id="GstPhotography.properties" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography.properties">
<ANCHOR id="GstPhotography.other" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography.other">
<ANCHOR id="GstPhotography.object-hierarchy" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography.object-hierarchy">
<ANCHOR id="GstPhotography.prerequisites" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography.prerequisites">
<ANCHOR id="GstPhotography.description" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography.description">
<ANCHOR id="GstPhotography.functions_details" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography.functions_details">
<ANCHOR id="GstPhotographyCapturePrepared" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographyCapturePrepared">
<ANCHOR id="gst-photography-get-ev-compensation" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-ev-compensation">
<ANCHOR id="gst-photography-get-iso-speed" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-iso-speed">
<ANCHOR id="gst-photography-get-aperture" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-aperture">
<ANCHOR id="gst-photography-get-exposure" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-exposure">
<ANCHOR id="gst-photography-get-white-balance-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-white-balance-mode">
<ANCHOR id="gst-photography-get-color-tone-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-color-tone-mode">
<ANCHOR id="gst-photography-get-scene-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-scene-mode">
<ANCHOR id="gst-photography-get-flash-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-flash-mode">
<ANCHOR id="gst-photography-get-noise-reduction" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-noise-reduction">
<ANCHOR id="gst-photography-get-zoom" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-zoom">
<ANCHOR id="gst-photography-set-ev-compensation" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-ev-compensation">
<ANCHOR id="gst-photography-set-iso-speed" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-iso-speed">
<ANCHOR id="gst-photography-set-aperture" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-aperture">
<ANCHOR id="gst-photography-set-exposure" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-exposure">
<ANCHOR id="gst-photography-set-white-balance-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-white-balance-mode">
<ANCHOR id="gst-photography-set-color-tone-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-color-tone-mode">
<ANCHOR id="gst-photography-set-scene-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-scene-mode">
<ANCHOR id="gst-photography-set-flash-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-flash-mode">
<ANCHOR id="gst-photography-set-noise-reduction" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-noise-reduction">
<ANCHOR id="gst-photography-set-zoom" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-zoom">
<ANCHOR id="gst-photography-get-capabilities" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-capabilities">
<ANCHOR id="gst-photography-prepare-for-capture" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-prepare-for-capture">
<ANCHOR id="gst-photography-set-autofocus" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-autofocus">
<ANCHOR id="gst-photography-set-config" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-set-config">
<ANCHOR id="gst-photography-get-config" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#gst-photography-get-config">
<ANCHOR id="GstPhotography.other_details" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography.other_details">
<ANCHOR id="GstPhotography-struct" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography-struct">
<ANCHOR id="GST-PHOTOGRAPHY-AUTOFOCUS-DONE:CAPS" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GST-PHOTOGRAPHY-AUTOFOCUS-DONE:CAPS">
<ANCHOR id="GST-PHOTOGRAPHY-SHAKE-RISK:CAPS" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GST-PHOTOGRAPHY-SHAKE-RISK:CAPS">
<ANCHOR id="GstPhotographyNoiseReduction" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographyNoiseReduction">
<ANCHOR id="GstPhotographyWhiteBalanceMode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographyWhiteBalanceMode">
<ANCHOR id="GstPhotographyColorToneMode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographyColorToneMode">
<ANCHOR id="GstPhotographySceneMode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographySceneMode">
<ANCHOR id="GstPhotographyFlashMode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographyFlashMode">
<ANCHOR id="GstPhotographyFlickerReductionMode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographyFlickerReductionMode">
<ANCHOR id="GstPhotographyFocusMode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographyFocusMode">
<ANCHOR id="GstPhotographyFocusStatus" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographyFocusStatus">
<ANCHOR id="GstPhotographyCaps" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographyCaps">
<ANCHOR id="GstPhotographyShakeRisk" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotographyShakeRisk">
<ANCHOR id="GstPhotography.property-details" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography.property-details">
<ANCHOR id="GstPhotography--aperture" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--aperture">
<ANCHOR id="GstPhotography--capabilities" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--capabilities">
<ANCHOR id="GstPhotography--colour-tone-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--colour-tone-mode">
<ANCHOR id="GstPhotography--ev-compensation" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--ev-compensation">
<ANCHOR id="GstPhotography--exposure" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--exposure">
<ANCHOR id="GstPhotography--flash-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--flash-mode">
<ANCHOR id="GstPhotography--flicker-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--flicker-mode">
<ANCHOR id="GstPhotography--focus-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--focus-mode">
<ANCHOR id="GstPhotography--image-capture-supported-caps" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--image-capture-supported-caps">
<ANCHOR id="GstPhotography--iso-speed" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--iso-speed">
<ANCHOR id="GstPhotography--scene-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--scene-mode">
<ANCHOR id="GstPhotography--white-balance-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--white-balance-mode">
<ANCHOR id="GstPhotography--image-preview-supported-caps" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--image-preview-supported-caps">
<ANCHOR id="GstPhotography--noise-reduction" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--noise-reduction">
<ANCHOR id="GstPhotography--zoom" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--zoom">
<ANCHOR id="GstPhotography--analog-gain" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--analog-gain">
<ANCHOR id="GstPhotography--color-temperature" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--color-temperature">
<ANCHOR id="GstPhotography--color-tone-mode" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--color-tone-mode">
<ANCHOR id="GstPhotography--exposure-time" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--exposure-time">
<ANCHOR id="GstPhotography--lens-focus" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--lens-focus">
<ANCHOR id="GstPhotography--max-exposure-time" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--max-exposure-time">
<ANCHOR id="GstPhotography--min-exposure-time" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--min-exposure-time">
<ANCHOR id="GstPhotography--white-point" href="gst-plugins-bad-plugins-1.0/GstPhotography.html#GstPhotography--white-point">