# HG changeset patch # User gpoirier # Date 1123853246 0 # Node ID 24c28ac0aa684047532800375af0a9fc56cb211a # Parent ca701176fe032cf47188a6ba7c3ffa512ff5963e Why multipass is better in a nutshell. Taken from Rich's encoding guide. diff -r ca701176fe03 -r 24c28ac0aa68 DOCS/xml/en/encoding-guide.xml --- a/DOCS/xml/en/encoding-guide.xml Thu Aug 11 22:30:05 2005 +0000 +++ b/DOCS/xml/en/encoding-guide.xml Fri Aug 12 13:27:26 2005 +0000 @@ -289,6 +289,19 @@ (CBR), constant quantizer, and multipass (ABR, or average bitrate). + + The complexity (and thus the number of bits) required to compress the + frames of a movie can vary greatly from one scene to another. + Modern video encoders can adjust to these needs as they go and vary + the bitrate. + However, in simple modes such CBR, they cannot exceed the requested + average bitrate for long stretches of time, because they do not know + the bitrate needs of future scenes. + Wiser modes, such as multipass encode can take into account the + statistics from previous passes, which fixes the problem mentioned + above. + + Note: Most codecs which support ABR encode only support two pass encode