Hi,

I have a strange problem. I'm trying to link to ffmpeg from Qt Creator on Windows. While this sounds straightforward, it doesn't seem to work.

When trying to compile ffmpeg using the mingw that comes with QtCreator, the ffmpeg configure script says that the mingw runtime is too old.

If I compile ffmpeg with the latest mingw, and the fire up Qt Creator to compile & link againts this ffmpeg, I get the following:

Qt Code:
  1. ../../lib/win32-mingw/lib/libavformat.a(utils.o): In function `fprintf':
  2. c:/usr/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../include/stdio.h:246: undefined reference to `__mingw_vfprintf'
  3. ../../lib/win32-mingw/lib/libavutil.a(log.o): In function `fprintf':
  4. c:/usr/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../include/stdio.h:246: undefined reference to `__mingw_vfprintf'
  5. collect2: ld returned 1 exit status
To copy to clipboard, switch view to plain text mode 

did anyone succeed with linking againts ffmpeg on windows using Qt Creator?