I&#39;m a user beginner of the libx264, and when I compile a test code with only one function, I receive a link error.<br>I read the x264.h, but not understand because exists this error, because the libx264.lib is find in my code.<br>
Perhaps the error exists because an VERSION incompatibility, I&#39;m using UBUNTU 9.10 with g++ 4.4.1.<br>How I compile the source whitout any bugs?<br><br>Source code:<br><br>#include &quot;inttypes.h&quot;<br>#include &quot;stdint.h&quot;<br>
#include &quot;x264.h&quot;<br><br>using namespace std;<br><br>int main()<br>{<br>    cout &lt;&lt; &quot;test libx264&quot; &lt;&lt; endl;<br><br>    x264_t *x264;<br>    x264_param_t *param;<br>    x264 = x264_encoder_open(param);    <br>
<br>    return 0;<br>}<br> <br><br>Thanks!<br>Vinícius<br clear="all"><br><br>