development of new codec...
Posted: 07 Nov 2006 02:46
I'm going to develope the new codec....
Where can I insert the new codec in vlc source.
What do I do?
Where can I insert the new codec in vlc source.
What do I do?
Discussion and support for VLC media player and friends
http://forum.videolan.org/
Code: Select all
VLC_ADD_PLUGIN([myplugin])
No, it is not necessay to extend the ffmpeg library to add a codec. The better solution may be to add a codec directly to VLC. This makes the result much simpler, and your codec will not need another wrapper (that from ffmpeg to VLC). But on the other hand adding a codec to ffmpeg may be less complicated, and other applications using ffmpeg will also have benefit from your codec.The above said solutions are not correct.
if you want to add your own codec then take help of ffmpeg library and study the whole library then make changes in that library such that you can access your codec.