You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. add inttypes.h and stdint.h with include files of ffmpeg
2. build code
3. the compilation gives error
F:\Windows
Project\zeranoe\ffmpeg-20130713-git-aac57c7-win32-dev\include\inttypes.h(49):
error C2146: syntax error : missing ';' before identifier 'quot'
What is the expected output? What do you see instead?
should compile like previous release (specifically tested r26) of msinttypes
What version of the product are you using? On what operating system?
r29 of msinttypes, Visual Studio 2012
Please provide any additional information below.
There are 3 lines in stdint.h
#if _MSC_VER >= 1600 // [
#include <stdint.h>
#else // ] _MSC_VER >= 1600 [
These 3 lines are responsible for the error. I have not found stdint.h with VS
2012. To solve the issue I had temporarily replace it like this
#if _MSC_VER >= 1800 // [
#include <stdint.h>
#else // ] _MSC_VER >= 1800 [
I would like to know how the authors retained stdint.h with Visual Studio 2012.
Original issue reported on code.google.com by [email protected] on 15 Jul 2013 at 7:47
The text was updated successfully, but these errors were encountered:
Visual Studio 2012 includes stdint.h at C:\Program Files (x86)\Microsoft Visual
Studio 11.0\VC\include\stdint.h, at least in the version I have installed here.
Original issue reported on code.google.com by
[email protected]
on 15 Jul 2013 at 7:47The text was updated successfully, but these errors were encountered: