Hi,shauli<br>
<br>
The three VBV parameters are very important in the rate control.
Especially if you want to make the 1pass(ABR and CBR)&nbsp; or 2pass
encoding.<br>
<br>
&nbsp;I make 1pass(CBR) by using x264 encoding.At last I get the satisfied result by using below parameter:<br>
--bitrate 2000 --ratetol 0.01 --vbv-maxrate 2000 --vbv-bufsize 1800
--vbv-init 0.1 --qcomp 0 --bframes 2 --no-b-adapt --verbose -o
E:\test.264&nbsp; E:\yuv.yuv 720x576<br>
<br>
So you could comprehend these parameters if you could make 1pass CBR by
using the x264. In the other hand you could get some help by search
some topic in the web &quot;<a href="http://forum.doom9.org/forumdisplay.php?f=77">http://forum.doom9.org/forumdisplay.php?f=77</a>&quot;.<br><br><div><span class="gmail_quote">2005/12/7, Corey Hickey &lt;<a href="mailto:bugfood-ml@fatooh.org">
bugfood-ml@fatooh.org</a>&gt;:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">shauli rozen wrote:<br>&gt; Can any one give me some explanations on the rate control setting
<br>&gt; I am using the code , and need help figuring out the effect of these<br>&gt; variables:<br>&gt;<br>&gt;<br>&gt; rc.i_vbv_max_bitrate ;<br>&gt;<br>&gt; rc.i_vbv_buffer_size ;<br>&gt;<br>&gt; rc.f_vbv_buffer_init ;
<br>&gt;<br>&gt; rc.f_ip_factor ;<br>&gt;<br>&gt; rc.f_pb_factor ;<br><br>In case nobody else gives you a better answer, here are what I assume to<br>be the corresponding descriptions from the mplayer man page.<br><br>vbv_maxrate=&lt;value&gt; (ABR or two pass)
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; maximum local bitrate, in kbits/second (default: disabled)<br><br>vbv_bufsize=&lt;value&gt; (ABR or two pass)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; averaging period for vbv_maxrate, in kbits (default: none, must<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; be specified if vbv_maxrate is enabled)
<br><br>vbv_init=&lt;0.0-1.0&gt; (ABR or two pass)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; initial buffer occupancy, as a fraction of vbv_bufsize (default:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.9)<br><br>ip_factor=&lt;value&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; quantizer factor between I- and P-frames (default: 
1.4)<br><br>pb_factor=&lt;value&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; quantizer factor between P- and B-frames (default: 1.3)<br><br><br>-Corey<br><br>--<br>This is the x264-devel mailing-list<br>To unsubscribe, go to: <a href="http://developers.videolan.org/lists.html">
http://developers.videolan.org/lists.html</a><br><br></blockquote></div><br>