[FFmpeg-cvslog] Add documentation for the crc muxer.

Stefano Sabatini git
Wed Feb 9 04:00:09 CET 2011


ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Mon Jan 31 15:20:09 2011 +0100| [ea67c95176e2b2f49efa9d6ed4bd52c6a0497463] | committer: Michael Niedermayer

Add documentation for the crc muxer.

Signed-off-by: Janne Grunau <janne-ffmpeg at jannau.net>
(cherry picked from commit a4effe432f4aa59d52465b88589f92addf3afd3e)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ea67c95176e2b2f49efa9d6ed4bd52c6a0497463
---

 doc/muxers.texi |   32 ++++++++++++++++++++++++++++++++
 1 files changed, 32 insertions(+), 0 deletions(-)

diff --git a/doc/muxers.texi b/doc/muxers.texi
index d661c96..63aa95c 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -18,6 +18,38 @@ enabled muxers.
 
 A description of some of the currently available muxers follows.
 
+ at section crc
+
+CRC (Cyclic Redundancy Check) testing format.
+
+This muxer computes and prints the Adler-32 CRC of all the input audio
+and video frames. By default audio frames are converted to signed
+16-bit raw audio and video frames to raw video before computing the
+CRC.
+
+The output of the muxer consists of a single line of the form:
+CRC=0x at var{CRC}, where @var{CRC} is a hexadecimal number 0-padded to
+8 digits containing the CRC for all the decoded input frames.
+
+For example to compute the CRC of the input, and store it in the file
+ at file{out.crc}:
+ at example
+ffmpeg -i INPUT -f crc out.crc
+ at end example
+
+You can print the CRC to stdout with the command:
+ at example
+ffmpeg -i INPUT -f crc -
+ at end example
+
+You can select the output format of each frame with @file{ffmpeg} by
+specifying the audio and video codec and format. For example to
+compute the CRC of the input audio converted to PCM unsigned 8-bit
+and the input video converted to MPEG-2 video, use the command:
+ at example
+ffmpeg -i INPUT -acodec pcm_u8 -vcodec mpeg2video -f crc -
+ at end example
+
 @section image2
 
 Image file muxer.




More information about the ffmpeg-cvslog mailing list