[x264-devel] x264 question

Calvin Walton calvin.walton at gmail.com
Sat Oct 27 16:25:00 CEST 2007


On 10/27/07, Muneeb Dawood <muneebel at yahoo.com> wrote:
> Hi
>
> I am thinking of integrating x264 in a practical c++ application where the
> core encoding is done using c like features and using object oriented
> features of c++ for application developement and gui and using various c++
> libraries.
>
> Best Regards
>
> Muneeb Dawood

If you have the x264 library already compiled with a C compiler, you
can use it directly in a C++ program, e.g. by using

extern "C" {
#include <x264.h>
}

in your program code, then link to the library. There is no reason to
modify the x264 code at all here.

-- 
Calvin Walton



More information about the x264-devel mailing list