22

I'm trying to use FFmpeg in a C++ project in Visual Studio 2010. I want to include the libraries as statically linked files. Simple programs like libavcodec/api-example.c compile without error and no linker error appears in the error view when starting them. However, a message box shows up after starting the application, saying that avutil-51.dll is missing. Do you have any hints on how to fix that?

I used the latest dev build from http://ffmpeg.zeranoe.com/builds/. Then I specified include as additional include directory, avcodec.lib;avfilter.lib;avformat.lib;avutil.lib as additional dependencies and lib as additional library directory.

47

With FFmpeg you can either:

  1. use pre-built .lib/.dll files and your binary produced with Visual Studio will be dependent on av*.dll files
  2. compile FFmpeg from source code into static libraries using non-Microsoft compiler, and then link to your Visual Studio project (mind the LGPL/GPL license in this case)

You built your project as per item 1 above. You have to use and redistribute the av*.dll dependent files with your binary to have it working.

"Static" on Zeranoe means that libraries are statically linked into binaries like ffmpeg.exe. Do not confuse this with static .lib libraries that link into your binary. Zeranoe does not provide such.

On Zeranoe you will find archives like this:

  • "Shared" ffmpeg-20120726-git-236ecc3-win32-shared.7z:
    • bin/avcodec-54.dll
    • bin/avutil-51.dll
    • etc
  • "Dev" ffmpeg-20120726-git-236ecc3-win32-dev.7z:
    • lib/avcodec.lib
    • lib/avutil.lib

"Shared" archive has FFmpeg built with dynamic link to DLL libraries. "Dev" archive has lib files which you can use in your project to link to them as well in a way that ffmpeg.exe does in shared archive.

So, your Visual Studio project can be as simple as this (browse full source here):

extern "C" 
{
        // NOTE: Additional directory ..\zeranoe.com\dev\include gets to the files
        #include "libavcodec\avcodec.h"
}

// NOTE: Additional directory ..\zeranoe.com\dev\lib gets to the files
#pragma comment(lib, "avcodec.lib")

// NOTE: Be sure to copy DLL files from ..\zeranoe.com\shared\bin to the directory of 
//       the FFmpegApp.exe binary
int _tmain(int argc, _TCHAR* argv[])
{
        _tprintf(_T("Trying avcodec_register_all... "));
        avcodec_register_all();
        _tprintf(_T("Done.\n"));
        return 0;
}

You will extract "Dev" archive into dev subdirectory of Visual Studio project and you will add dev\include on the additional include path. This will be sufficient to build the binary, and it will be dependent on av*.dll:

enter image description here

This is when you extract the "Shared" archive, and copy DLLs from its bin to the directory of your binary. And your app will work from there:

C:\FFmpegApp\Release>FFmpegApp.exe
Trying avcodec_register_all... Done.

20 Jan 2016 UPDATE: The project in repository is upgraded to Visual Studio 2013 (older VS 2010 code) and checked against current Zeranoe builds. The sample and instructions remain in good standing.

Note that Win32 builds in Visual Studio assume that you use 32-bit files from Zeranoe. To build 64-bit version, download respective files and set up Visual C++ project respectively, to build x64 (or, the best, download both, set up both configurations and configure include/lib paths respectively). Failure to match bitness would result in error, mentioned in the comments below.

20
  • Thanks for clearing that up! There are some .dll.a files in the project which I also tried to include as additional includes for the linker. However, there is no avutil-51.dll but only a libavutil.dll.a file. Do I have to get additional dlls or where/how do I have to include them? – box Jul 28 '12 at 14:42
  • 1
    I updated answer above (with correction as for "static" builds). You will need Dev archive to link into your projects, and Shared archive wlil get you missing DLLs. – Roman R. Jul 28 '12 at 16:08
  • I did as you described but I couldn't get it to work (error remains). Where do I have to include the DLLs? I tried to put them in various include paths and copied them to the same folder as the executable. Do I have to do anything with the *.dll.a files in "Dev"? – box Jul 28 '12 at 19:38
  • I thought I could be giving you wrong advice... but nope, everything is in good standing. See answer above for even more detail. – Roman R. Jul 30 '12 at 17:09
  • 3
    Absolutely do not forget the extern "C"!! I missed it in your example and was tearing my hair out as I couldn't see what I was doing differently. – Deanna May 22 '15 at 9:18

Not the answer you're looking for? Browse other questions tagged or ask your own question.