diff DOCS/man/en/mplayer.1 @ 14916:68582488a5d6

sync to x264 r150: new option 'b_pyramid'
author lorenm
date Fri, 04 Mar 2005 13:11:01 +0000
parents 5146c58fcf24
children 354e7a03ee54
line wrap: on
line diff
--- a/DOCS/man/en/mplayer.1	Fri Mar 04 07:50:55 2005 +0000
+++ b/DOCS/man/en/mplayer.1	Fri Mar 04 13:11:01 2005 +0000
@@ -7660,6 +7660,20 @@
 A higher b_bias produces more B-frames. (default: 0)
 .
 .TP
+.B (no)b_pyramid
+Allows B-frames to be used as references for predicting other frames.
+For example, consider 3 consecutive B-frames: I0 B1 B2 B3 P4.
+Without this option, B-frames follow the same pattern as MPEG-[124].
+So they are coded in the order I0 P4 B1 B2 B3, and all the B-frames 
+are predicted from I0 and P4.
+With this option, they are coded as I0 P4 B2 B1 B3.
+B2 is the same as above, but B1 is predicted from I0 and B2, and 
+B3 is predicted from B2 and P4.
+This results in slightly improved compression, at no speed cost.
+Requires bframes >= 2.
+Disadvantage: increases decoding delay to 2 frames.
+.
+.TP
 .B (no)deblock
 Use deblocking filter (default: on).
 As it takes very little time compared to its quality gain, it's not