Enable ffmpeg building with MinGW-w64. The libraries were compiled with gcc 4.7, however is has been claimed there are issues with gcc > 4.4 so this is for testing purposes. Still it doesn't crash on startup anymore. Forgot to mention on ffmpeg lib commit that committed ffmpeg version is 0.10.2

This commit is contained in:
Antony Riakiotakis
2012-05-10 11:37:41 +00:00
parent 4bf0e61de2
commit f91fa9d2ce
3 changed files with 17 additions and 7 deletions

View File

@@ -584,7 +584,14 @@ elseif(WIN32)
${LIBDIR}/ffmpeg/lib/swscale-2.dll
DESTINATION ${TARGETDIR}
)
if(WITH_MINGW64)
install(
FILES
${LIBDIR}/ffmpeg/lib/swresample-0.dll
${LIBDIR}/ffmpeg/lib/xvidcore.dll
DESTINATION ${TARGETDIR}
)
endif()
endif()
if(WITH_CODEC_SNDFILE)