Page 1 of 1

compilation of some file vlc

Posted: 22 Apr 2011 12:59
by isabelle
hello,
I'm about to use some source code files for vlc to read, transcode a video stream on the internet
But trying to compile the source code file "transcode.c" I Pariat errurs of programming as
* C3861: 'N_': identifier not found
* C2117: 'fcc': exceeding the bounds of the array
Although, I have imported all the include files needed to compile
I did not understand how I solves the error and the source code is open source vlc
i need your help.

Re: compilation of some file vlc

Posted: 22 Apr 2011 15:55
by Jean-Baptiste Kempf
Compile with gcc...

Re: compilation of some file vlc

Posted: 22 Apr 2011 17:03
by isabelle
ok the work I do is retro engineering: from the source code of vlc I implement a transcoder on the fly
So I need to know vlc files to select the files that I use and I selected the modules that helps me
even compiling the source code of VLC on ubuntu (in shell and geany) or Windows errors (visual studio)
I took files as input.c, video.c, transcode.c, avcodec.c .... But I found several programming errors even though I imported the file include
and now I do not know how I will do this work for
that is why I ask your help

Re: compilation of some file vlc

Posted: 23 Apr 2011 14:57
by VLC_help
You cannot compile VLC with Visual Studio. And if you want to use VLC components in your own program, you need to use libvlc (copy+paste of VLC code won't create working program).