summaryrefslogtreecommitdiff
path: root/docs/plugins/inspect/plugin-ffmpeg.xml
blob: 17f48045e90479fd4b3904c5acb688f802da9c78 (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
<plugin>
  <name>ffmpeg</name>
  <description>All FFMPEG codecs</description>
  <filename>../../ext/ffmpeg/.libs/libgstffmpeg.so</filename>
  <basename>libgstffmpeg.so</basename>
  <version>CVS</version>
  <license>LGPL</license>
  <source>gst-ffmpeg</source>
  <package>FFMpeg</package>
  <origin>http://ffmpeg.sourceforge.net/</origin>
  <elements>
    <element>
      <name>ffdec_4xm</name>
      <longname>FFMPEG 4-XM video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG 4xm decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_8bps</name>
      <longname>FFMPEG Quicktime planar 8bps video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG 8bps decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_aasc</name>
      <longname>FFMPEG Autodesk RLE video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG aasc decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_4xm</name>
      <longname>FFMPEG 4-XM ADPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_4xm decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_adx</name>
      <longname>FFMPEG ADX ADPCM decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_adx decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_ct</name>
      <longname>FFMPEG CT ADPCM decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_ct decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_ea</name>
      <longname>FFMPEG Electronic Arts ADPCM decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_ea decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_ima_dk3</name>
      <longname>FFMPEG IMA/DK3 ADPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_ima_dk3 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_ima_dk4</name>
      <longname>FFMPEG IMA/DK4 ADPCM decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_ima_dk4 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_ima_qt</name>
      <longname>FFMPEG IMA/Quicktime ADPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_ima_qt decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_ima_smjpeg</name>
      <longname>FFMPEG IMA/SMJPEG ADPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_ima_smjpeg decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_ima_wav</name>
      <longname>FFMPEG IMA/DVI ADPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_ima_wav decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_ima_ws</name>
      <longname>FFMPEG IMA/Westwood ADPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_ima_ws decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_ms</name>
      <longname>FFMPEG Microsoft ADPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_ms decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_swf</name>
      <longname>FFMPEG Shockwave ADPCM decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_swf decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_xa</name>
      <longname>FFMPEG CD-ROM XA ADPCM decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_xa decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_adpcm_yamaha</name>
      <longname>FFMPEG Yamaha ADPCM decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG adpcm_yamaha decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_alac</name>
      <longname>FFMPEG Apple lossless audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG alac decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_asv1</name>
      <longname>FFMPEG Asus video v1 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG asv1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_asv2</name>
      <longname>FFMPEG Asus video v2 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG asv2 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_camtasia</name>
      <longname>FFMPEG Techsmith Camtasia video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG camtasia decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_cinepak</name>
      <longname>FFMPEG Cinepak video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG cinepak decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_cljr</name>
      <longname>FFMPEG Cirrus Logipak AccuPak video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG cljr decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_cyuv</name>
      <longname>FFMPEG CYUV lossless video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG cyuv decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_dvvideo</name>
      <longname>FFMPEG Digital video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG dvvideo decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_ffv1</name>
      <longname>FFMPEG FFMpeg video v1 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG ffv1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_ffvhuff</name>
      <longname>FFMPEG FFMPEG non-compliant Huffyuv video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG ffvhuff decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_flac</name>
      <longname>FFMPEG FLAC lossless audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG flac decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_flic</name>
      <longname>FFMPEG FLIC animation video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG flic decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_flv</name>
      <longname>FFMPEG FLV video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG flv decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_fraps</name>
      <longname>FFMPEG FRAPS video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG fraps decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_g726</name>
      <longname>FFMPEG G.726 ADPCM decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG g726 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_h261</name>
      <longname>FFMPEG H.261 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG h261 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_h263</name>
      <longname>FFMPEG H.263 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG h263 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_h263i</name>
      <longname>FFMPEG Intel H.263 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG h263i decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_h264</name>
      <longname>FFMPEG H.264 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG h264 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_huffyuv</name>
      <longname>FFMPEG Huffyuv lossless video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG huffyuv decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_idcinvideo</name>
      <longname>FFMPEG ID Quake II CIN video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG idcinvideo decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_indeo2</name>
      <longname>FFMPEG Indeo=2 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG indeo2 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_indeo3</name>
      <longname>FFMPEG Indeo-3 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG indeo3 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_interplay_dpcm</name>
      <longname>FFMPEG Interplay DPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG interplay_dpcm decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_interplayvideo</name>
      <longname>FFMPEG Interplay video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG interplayvideo decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_loco</name>
      <longname>FFMPEG LOCO video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG loco decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mace3</name>
      <longname>FFMPEG MACE-3 audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG mace3 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mace6</name>
      <longname>FFMPEG MACE-6 audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG mace6 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mdec</name>
      <longname>FFMPEG Playstation MDEC video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG mdec decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mjpeg</name>
      <longname>FFMPEG Motion-JPEG decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG mjpeg decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mp3</name>
      <longname>FFMPEG MPEG-1 layer 3 audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG mp3 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mp3adu</name>
      <longname>FFMPEG ADU-formatted MPEG-1 layer 3 audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG mp3adu decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mp3on4</name>
      <longname>FFMPEG MP3ON4 decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG mp3on4 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mpeg2video</name>
      <longname>FFMPEG MPEG-2 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG mpeg2video decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mpeg4</name>
      <longname>FFMPEG MPEG-4 compatible video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG mpeg4 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mpegvideo</name>
      <longname>FFMPEG MPEG-2 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG mpegvideo decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_msmpeg4</name>
      <longname>FFMPEG Microsoft MPEG-4 v3 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG msmpeg4 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_msmpeg4v1</name>
      <longname>FFMPEG Microsoft MPEG-4 v1 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG msmpeg4v1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_msmpeg4v2</name>
      <longname>FFMPEG Microsoft MPEG-4 v2 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG msmpeg4v2 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_msrle</name>
      <longname>FFMPEG Microsoft RLE video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG msrle decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_msvideo1</name>
      <longname>FFMPEG Microsoft video v1 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG msvideo1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_mszh</name>
      <longname>FFMPEG Lossless MSZH video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG mszh decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_pam</name>
      <longname>FFMPEG PAM image decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG pam decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_pbm</name>
      <longname>FFMPEG PBM image decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG pbm decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_pgm</name>
      <longname>FFMPEG PGM image decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG pgm decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_pgmyuv</name>
      <longname>FFMPEG PGM-YUV image decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG pgmyuv decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_png</name>
      <longname>FFMPEG PNG image decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG png decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_ppm</name>
      <longname>FFMPEG PPM image decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG ppm decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_qdm2</name>
      <longname>FFMPEG QDesign Music 2 decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG qdm2 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_qdraw</name>
      <longname>FFMPEG Applet Quickdraw video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG qdraw decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_qtrle</name>
      <longname>FFMPEG Quicktime RLE animation video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG qtrle decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_real_144</name>
      <longname>FFMPEG Realaudio 14k4bps decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG real_144 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_real_288</name>
      <longname>FFMPEG Realaudio 28k8bps decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG real_288 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_roq_dpcm</name>
      <longname>FFMPEG RoQ DPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG roq_dpcm decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_roqvideo</name>
      <longname>FFMPEG ID/RoQ video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG roqvideo decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_rpza</name>
      <longname>FFMPEG Apple RPZA video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG rpza decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_rv10</name>
      <longname>FFMPEG Realvideo 1.0 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG rv10 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_rv20</name>
      <longname>FFMPEG Realvideo 2.0 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG rv20 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_shorten</name>
      <longname>FFMPEG Shorten lossless audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG shorten decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_smc</name>
      <longname>FFMPEG Quicktime SMC graphics video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG smc decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_snow</name>
      <longname>FFMPEG Snow wave video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG snow decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_sol_dpcm</name>
      <longname>FFMPEG SOL DPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG sol_dpcm decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_sonic</name>
      <longname>FFMPEG Sonic audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG sonic decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_sp5x</name>
      <longname>FFMPEG Sp5x-like JPEG decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG sp5x decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_svq1</name>
      <longname>FFMPEG Sorensen-1 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG svq1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_svq3</name>
      <longname>FFMPEG Sorensen-3 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG svq3 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_theora</name>
      <longname>FFMPEG Theora video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG theora decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_truemotion1</name>
      <longname>FFMPEG Duck Truemotion video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG truemotion1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_truemotion2</name>
      <longname>FFMPEG Duck Truemotion 2 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG truemotion2 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_ultimotion</name>
      <longname>FFMPEG Ultimotion video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG ultimotion decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_vc9</name>
      <longname>FFMPEG Microsoft Video Codec v1 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG vc9 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_vcr1</name>
      <longname>FFMPEG ATI VCR-1 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG vcr1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_vmdaudio</name>
      <longname>FFMPEG Sierra VMD audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG vmdaudio decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_vmdvideo</name>
      <longname>FFMPEG Sierra VMD video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG vmdvideo decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_vp3</name>
      <longname>FFMPEG VP3 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG vp3 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_vqavideo</name>
      <longname>FFMPEG Westwood VQA video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG vqavideo decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_wmav1</name>
      <longname>FFMPEG Windows Media Audio v7 decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG wmav1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_wmav2</name>
      <longname>FFMPEG Windows Media Audio v8/9 decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG wmav2 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_wmv1</name>
      <longname>FFMPEG Windows Media Video v7 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG wmv1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_wmv2</name>
      <longname>FFMPEG Windows Media Video v8 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG wmv2 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_wmv3</name>
      <longname>FFMPEG Windows Media Video v9 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG wmv3 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_wnv1</name>
      <longname>FFMPEG Winnov video 1 decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG wnv1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_ws_snd1</name>
      <longname>FFMPEG Westwood Sound-1 decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG ws_snd1 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_xan_dpcm</name>
      <longname>FFMPEG XAN DPCM audio decoder</longname>
      <class>Codec/Decoder/Audio</class>
      <description>FFMPEG xan_dpcm decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_xan_wc3</name>
      <longname>FFMPEG XAN Wing Commander 3 video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG xan_wc3 decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_xl</name>
      <longname>FFMPEG Miro VideoXL decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG xl decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffdec_zlib</name>
      <longname>FFMPEG Lossless zlib video decoder</longname>
      <class>Codec/Decoder/Video</class>
      <description>FFMPEG zlib decoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_ac3</name>
      <longname>FFMPEG AC-3 audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG ac3 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_4xm</name>
      <longname>FFMPEG 4-XM ADPCM audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_4xm encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_adx</name>
      <longname>FFMPEG ADX ADPCM encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_adx encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_ct</name>
      <longname>FFMPEG CT ADPCM encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_ct encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_ea</name>
      <longname>FFMPEG Electronic Arts ADPCM encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_ea encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_ima_dk3</name>
      <longname>FFMPEG IMA/DK3 ADPCM audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_ima_dk3 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_ima_dk4</name>
      <longname>FFMPEG IMA/DK4 ADPCM encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_ima_dk4 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_ima_qt</name>
      <longname>FFMPEG IMA/Quicktime ADPCM audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_ima_qt encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_ima_smjpeg</name>
      <longname>FFMPEG IMA/SMJPEG ADPCM audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_ima_smjpeg encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_ima_wav</name>
      <longname>FFMPEG IMA/DVI ADPCM audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_ima_wav encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_ima_ws</name>
      <longname>FFMPEG IMA/Westwood ADPCM audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_ima_ws encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_ms</name>
      <longname>FFMPEG Microsoft ADPCM audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_ms encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_swf</name>
      <longname>FFMPEG Shockwave ADPCM encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_swf encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_xa</name>
      <longname>FFMPEG CD-ROM XA ADPCM encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_xa encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_adpcm_yamaha</name>
      <longname>FFMPEG Yamaha ADPCM encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG adpcm_yamaha encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_asv1</name>
      <longname>FFMPEG Asus video v1 encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG asv1 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_asv2</name>
      <longname>FFMPEG Asus video v2 encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG asv2 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_dvvideo</name>
      <longname>FFMPEG Digital video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG dvvideo encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_ffv1</name>
      <longname>FFMPEG FFMpeg video v1 encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG ffv1 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_ffvhuff</name>
      <longname>FFMPEG FFMPEG non-compliant Huffyuv video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG ffvhuff encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_flv</name>
      <longname>FFMPEG FLV video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG flv encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_g726</name>
      <longname>FFMPEG G.726 ADPCM encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG g726 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_h261</name>
      <longname>FFMPEG H.261 video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG h261 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_h263</name>
      <longname>FFMPEG H.263 video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG h263 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_h263p</name>
      <longname>FFMPEG H.263 (P) video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG h263p encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_huffyuv</name>
      <longname>FFMPEG Huffyuv lossless video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG huffyuv encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_ljpeg</name>
      <longname>FFMPEG Lossless JPEG encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG ljpeg encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_mjpeg</name>
      <longname>FFMPEG Motion-JPEG encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG mjpeg encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_mp2</name>
      <longname>FFMPEG MPEG-1 layer 2 audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG mp2 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_mpeg1video</name>
      <longname>FFMPEG MPEG-1 video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG mpeg1video encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_mpeg2video</name>
      <longname>FFMPEG MPEG-2 video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG mpeg2video encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_mpeg4</name>
      <longname>FFMPEG MPEG-4 compatible video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG mpeg4 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_msmpeg4</name>
      <longname>FFMPEG Microsoft MPEG-4 v3 encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG msmpeg4 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_msmpeg4v1</name>
      <longname>FFMPEG Microsoft MPEG-4 v1 encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG msmpeg4v1 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_msmpeg4v2</name>
      <longname>FFMPEG Microsoft MPEG-4 v2 encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG msmpeg4v2 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_pam</name>
      <longname>FFMPEG PAM image encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG pam encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_pbm</name>
      <longname>FFMPEG PBM image encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG pbm encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_pgm</name>
      <longname>FFMPEG PGM image encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG pgm encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_pgmyuv</name>
      <longname>FFMPEG PGM-YUV image encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG pgmyuv encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_png</name>
      <longname>FFMPEG PNG image encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG png encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_ppm</name>
      <longname>FFMPEG PPM image encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG ppm encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_rv10</name>
      <longname>FFMPEG Realvideo 1.0 encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG rv10 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_rv20</name>
      <longname>FFMPEG Realvideo 2.0 encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG rv20 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_snow</name>
      <longname>FFMPEG Snow wave video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG snow encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_sonic</name>
      <longname>FFMPEG Sonic audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG sonic encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_sonicls</name>
      <longname>FFMPEG Sonic lossless audio encoder</longname>
      <class>Codec/Encoder/Audio</class>
      <description>FFMPEG sonicls encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_svq1</name>
      <longname>FFMPEG Sorensen-1 video encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG svq1 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_wmv1</name>
      <longname>FFMPEG Windows Media Video v7 encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG wmv1 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
    <element>
      <name>ffenc_wmv2</name>
      <longname>FFMPEG Windows Media Video v8 encoder</longname>
      <class>Codec/Encoder/Video</class>
      <description>FFMPEG wmv2 encoder</description>
      <author>Wim Taymans &lt;wim.taymans@chello.be&gt;, Ronald Bultje &lt;rbultje@ronald.bitfreak.net&gt;</author>
    </element>
  </elements>
</plugin>