Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2008-11-04 02:35:41 +0300
committerKent Mein <mein@cs.umn.edu>2008-11-04 02:35:41 +0300
commitb7fdf2ab50ef285fc88cb8a9bf6e39bf27a0ec75 (patch)
treec7bf2857b4d40e8162f1de5a7cc4c734b79d431d /source/gameengine
parentec462b8cead8766c9b12a962d460818d68788015 (diff)
Add's GSR's INT64_C fix and removes dos line endings...
Kent
Diffstat (limited to 'source/gameengine')
-rw-r--r--source/gameengine/VideoTexture/VideoFFmpeg.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/gameengine/VideoTexture/VideoFFmpeg.cpp b/source/gameengine/VideoTexture/VideoFFmpeg.cpp
index 272d2695c4b..2af7228a192 100644
--- a/source/gameengine/VideoTexture/VideoFFmpeg.cpp
+++ b/source/gameengine/VideoTexture/VideoFFmpeg.cpp
@@ -20,6 +20,11 @@ http://www.gnu.org/copyleft/lesser.txt.
-----------------------------------------------------------------------------
*/
+// INT64_C fix for some linux machines (C99ism)
+#define __STDC_CONSTANT_MACROS
+#include <stdint.h>
+
+
#include "MEM_guardedalloc.h"
#include "PIL_time.h"