While using the ffMPEG builds in Windows with Visual Studio 2010, I encountered the inttypes.h not found error.
Since searching through the internet led me to wrong solutions, I thought I’d put up the right solution here so that people can find it easily. Will be answering my own question soon.
While using the ffMPEG builds in Windows with Visual Studio 2010, I encountered the
Share
The solution is to download this file and place the
inttypes.hfile either where Visual Studio can find it, or in the folder where ffMPEG’scommon.his located. If you choose the latter, you’ll have to change the#include<inttypes.h>line to#include "inttypes.h".Had got this solution from here.
Another solution which didn’t work for me is to replace the
#include<inttypes.h>withThis solution was obtained from here.
Hope this helped.