Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2011-02-12 03:02:45 +0300
committerMichael Niedermayer <michaelni@gmx.at>2011-02-18 21:52:25 +0300
commit728d56e84f7257e75a0f3824ebb8e53c2444b09b (patch)
tree68ab73ba9cbf79c5b5bcdf7140b4a4f482d68cfc /doc
parent5d329e2eb713dbf41b15362f8cdd7b5ea3ea9d0a (diff)
documentation: add encoders chapter
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 0fa904c9d845d4a47372e619067e21991bb39b06)
Diffstat (limited to 'doc')
-rw-r--r--doc/encoders.texi20
-rw-r--r--doc/ffmpeg.texi1
2 files changed, 21 insertions, 0 deletions
diff --git a/doc/encoders.texi b/doc/encoders.texi
new file mode 100644
index 0000000000..cab98fb0bd
--- /dev/null
+++ b/doc/encoders.texi
@@ -0,0 +1,20 @@
+@chapter Encoders
+@c man begin ENCODERS
+
+Encoders are configured elements in FFmpeg which allow the encoding of
+multimedia streams.
+
+When you configure your FFmpeg build, all the supported native encoders
+are enabled by default. Encoders requiring an external library must be enabled
+manually via the corresponding @code{--enable-lib} option. You can list all
+available encoders using the configure option @code{--list-encoders}.
+
+You can disable all the encoders with the configure option
+@code{--disable-encoders} and selectively enable / disable single encoders
+with the options @code{--enable-encoder=@var{ENCODER}} /
+@code{--disable-encoder=@var{ENCODER}}.
+
+The option @code{-codecs} of the ff* tools will display the list of
+enabled encoders.
+
+@c man end ENCODERS
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi
index 8b8e42f1f6..f0f3b65084 100644
--- a/doc/ffmpeg.texi
+++ b/doc/ffmpeg.texi
@@ -981,6 +981,7 @@ file to which you want to add them.
@c man end EXAMPLES
@include eval.texi
+@include encoders.texi
@include demuxers.texi
@include muxers.texi
@include indevs.texi