ffmpeg2raw.c starts with this line:

#define HAVE_AV_CONFIG_H

It *must not* do that.  That is supposed to be defined only when compiling the 
ffmpeg package.  The header files *do not work* with it defined.

It then continues with:
#include "common.h"
#include "avformat.h"

Clearly, this is also wrong.  It should be:
#include <ffmpeg/common.h>
#include <ffmpeg/avformat.h>

(note correction on pathnames from the one I suggested in the other bug)

Try making these changes and see what happens.  Probably something will break 
because there was probably some reason why HAVE_AV_CONFIG_H was defined.  
Then please explain what broke to this bug trail and someone will explain how 
to fix it.  :-)

-- 
Nathanael Nerode  <[EMAIL PROTECTED]>

Read it and weep.
http://rawstory.com/news/2005/Text_of_Gore_speech_0116.html



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to