<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi,<br>
<br>
this is the normal behaviour of x264 for 0 bframes (max_b_frames = 0)
and 3 threads.<br>
The thread_count = 0 directs x264 to use enough threads to load all
your CPU cores during encode. So you probably run the tests on a dual
core machine (2 cores will have 3 threads). To get x264 encode without
delay, set thread_count = 1.<br>
<br>
Cheers,<br>
<br>
Daniel<br>
<br>
<br>
Liulifeng wrote:
<blockquote cite="mid:344013.73139.qm@web92106.mail.cnh.yahoo.com"
 type="cite">
  <table border="0" cellpadding="0" cellspacing="0">
    <tbody>
      <tr>
        <td
 style="font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;"
 valign="top">I am using FFMpeg+x264 as a h264 encoder to encode video
stream in my application.But the encoder has 2 frame delay in my
APP.The function
avcodec_encode_video() return 0 for the first 2 frames of the video
stream, and the third
encoding output gets this of the first input video frame.I don't know
whether it is the problem of x264 or my ffmpeg settings.<br>
  The following code shows my ffmpeg h264 encoder setting.<br>
bool CH264::initEncode(const CVideoStreamParams* params)<br>
{<br>
   mpCodec = avcodec_find_encoder(CODEC_ID_H264);<br>
   if (mpCodec == NULL)<br>
   {<br>
      return false;<br>
   }<br>
        <br>
   mpCodecContext= avcodec_alloc_context();<br>
   mpPicture= avcodec_alloc_frame();<br>
        <br>
   mpPictureSrc = new AVPicture();<br>
   avpicture_alloc(mpPictureSrc, PIX_FMT_BGR24,
params-&gt;getFrameWidth(), params-&gt;getFrameHeight());<br>
        <br>
     mpPictureDest = new AVPicture();<br>
     avpicture_alloc(mpPictureDest, PIX_FMT_YUV420P,
params-&gt;getFrameWidth(), params-&gt;getFrameHeight());<br>
        <br>
    mpCodecContext-&gt;coder_type = FF_CODER_TYPE_VLC; // CAVLC entropy
coding<br>
    mpCodecContext-&gt;max_b_frames = 0;<br>
    mpCodecContext-&gt;refs = 3;<br>
    AVRational ar = av_d2q(1. / mStreamParams.getFrameRate(),
H264_TIMESTAMP_FREQ);<br>
    mpCodecContext-&gt;time_base.num = ar.num;<br>
    mpCodecContext-&gt;time_base.den = ar.den;<br>
    mpCodecContext-&gt;gop_size =
mpCodecContext-&gt;time_base.den/mpCodecContext-&gt;time_base.num;<br>
    mpCodecContext-&gt;width = mStreamParams.getFrameWidth();<br>
    mpCodecContext-&gt;height = mStreamParams.getFrameHeight();<br>
    mpCodecContext-&gt;pix_fmt = PIX_FMT_YUV420P;<br>
        <br>
   mpCodecContext-&gt;crf = 23;<br>
   mpCodecContext-&gt;flags2 |= CODEC_FLAG2_FASTPSKIP;<br>
   mpCodecContext-&gt;me_method = 7;<br>
   mpCodecContext-&gt;me_subpel_quality = 4;  <br>
   mpCodecContext-&gt;trellis = 0;    <br>
   mpCodecContext-&gt;thread_count = 0;<br>
   // open codec<br>
   if (avcodec_open(mpCodecContext, mpCodec) &lt; 0)<br>
   {<br>
      freeEncode();<br>
      return false;<br>
   }<br>
return true;<br>
}<br>
        <br>
Is the problem of x264 or my settings?How to reduce the delay to 0
frame?Thanks.<br>
        <br>
        <br>
Leon<br>
        </td>
      </tr>
    </tbody>
  </table>
  <br>
  <hr size="1"><a moz-do-not-send="true"
 href="http://cn.rd.yahoo.com/mail_cn/tagline/card/*http://card.mail.cn.yahoo.com/">
好玩贺卡等你发,邮箱贺卡全新上线!</a>
  <pre wrap="">
<hr size="4" width="90%">
_______________________________________________
x264-devel mailing list
<a class="moz-txt-link-abbreviated" href="mailto:x264-devel@videolan.org">x264-devel@videolan.org</a>
<a class="moz-txt-link-freetext" href="http://mailman.videolan.org/listinfo/x264-devel">http://mailman.videolan.org/listinfo/x264-devel</a>
  </pre>
</blockquote>
</body>
</html>