tags:

views:

12

answers:

0

Hello,

I have a ffmpeg v0.5 package, which i am working on Theora Decoder. I have optimized belo file in the package: vp3dsp.c by doing ARM Neon assembly hand-coding. I need to plugin this file in the whole ffmpeg package and build it. I checked the makefile. FFMPEG has different make files for creating different libraries for libavcodec, libavutil etc...

So i checked the Makefile inside libavcodec/ folder. In it i see different make file related syntax e.g. vp3.o vpdsp.o

No-where it mentions about source files which are used. So i assumed that if it says vp3.o (object file), it will look for a vp3.c to compile it and obtain a vp3.o

Now how do i add the assembly files which i have developed vp3dsp.s

Any pointers will be appreciated.

Thanks,

-AD.

P.S. There is a mailing list for ffmpeg mailing list, but it takes time to subscribe to it and then get an answer to the query. I kind of needed it quickly hence posted here.