A short description how to compile, and link qrender.

QRender is part of the QDVDAuthor suite. It is linked against ffmpeg, and Qt 4.4 and up.

Linking against ffmpeg can become tricky as the API is still somewhat in flux. 

I encourage to link statically against ffmpeg if possible to avoid broken dependencies.

I also included a shell script to pull ffmpeg from the main web site, configure it and install it in the current source tree.
> local_ffmpeg.sh

Note: If the qrender/ffmpeg/ directory exists then this dir will be set as the FFMpeg directory.

Compiling:
----------

The FFMPEG environment variable can be used to overwrite the default FFMpeg directory.
export STATIC_FFMPEG=1 will cause a statically linking against the ffmpeg library.

To generate the Makefile type in.
> qmake
> make
> make install


SuSE 10.3:
After installing libtheora I had to manually 
> cd /usr/lib
> sudo ln -s libtheora.so.0 libtheora.so

