diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-19 20:34:56 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-20 10:00:00 +0200 |
commit | 5e45f03420945dfeaf66729f5d022e5c15ff5723 (patch) | |
tree | 8abc5c6716b3f183f57462f0a40364560e263454 /doc/decoders.texi | |
parent | d4111e525dbb0efe72c03d715134d654f3d66392 (diff) | |
download | ffmpeg-5e45f03420945dfeaf66729f5d022e5c15ff5723.tar.gz |
doc: add decoders.texi file
Diffstat (limited to 'doc/decoders.texi')
-rw-r--r-- | doc/decoders.texi | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/decoders.texi b/doc/decoders.texi new file mode 100644 index 0000000000..359ab39bd9 --- /dev/null +++ b/doc/decoders.texi @@ -0,0 +1,22 @@ +@chapter Decoders +@c man begin DECODERS + +Decoders are configured elements in FFmpeg which allow the decoding of +multimedia streams. + +When you configure your FFmpeg build, all the supported native decoders +are enabled by default. Decoders requiring an external library must be enabled +manually via the corresponding @code{--enable-lib} option. You can list all +available decoders using the configure option @code{--list-decoders}. + +You can disable all the decoders with the configure option +@code{--disable-decoders} and selectively enable / disable single decoders +with the options @code{--enable-decoder=@var{DECODER}} / +@code{--disable-decoder=@var{DECODER}}. + +The option @code{-codecs} of the ff* tools will display the list of +enabled decoders. + +A description of some of the currently available decoders follows. + +@c man end DECODERS |