I'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'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 "inttypes.h"<br>#include "stdint.h"<br>
#include "x264.h"<br><br>using namespace std;<br><br>int main()<br>{<br> cout << "test libx264" << 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>