|
1
|
1
|
new file mode 100644
|
|
...
|
...
|
@@ -0,0 +1,22 @@
|
|
|
0
|
+@chapter Decoders
|
|
|
1
|
+@c man begin DECODERS
|
|
|
2
|
+
|
|
|
3
|
+Decoders are configured elements in FFmpeg which allow the decoding of
|
|
|
4
|
+multimedia streams.
|
|
|
5
|
+
|
|
|
6
|
+When you configure your FFmpeg build, all the supported native decoders
|
|
|
7
|
+are enabled by default. Decoders requiring an external library must be enabled
|
|
|
8
|
+manually via the corresponding @code{--enable-lib} option. You can list all
|
|
|
9
|
+available decoders using the configure option @code{--list-decoders}.
|
|
|
10
|
+
|
|
|
11
|
+You can disable all the decoders with the configure option
|
|
|
12
|
+@code{--disable-decoders} and selectively enable / disable single decoders
|
|
|
13
|
+with the options @code{--enable-decoder=@var{DECODER}} /
|
|
|
14
|
+@code{--disable-decoder=@var{DECODER}}.
|
|
|
15
|
+
|
|
|
16
|
+The option @code{-codecs} of the ff* tools will display the list of
|
|
|
17
|
+enabled decoders.
|
|
|
18
|
+
|
|
|
19
|
+A description of some of the currently available decoders follows.
|
|
|
20
|
+
|
|
|
21
|
+@c man end DECODERS
|