1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 12:01:51 +00:00

Fix for travis build issue

This commit is contained in:
scrawl 2015-06-04 01:16:52 +02:00
parent 58917bcca6
commit 7ac4b2bb66

View File

@ -1,6 +1,14 @@
#ifndef VIDEOPLAYER_H
#define VIDEOPLAYER_H
// FIXME: This can't be right? The ffmpeg headers refuse to build without UINT64_C,
// which only gets defined in stdint.h in either C99 mode or with this macro
// defined...
#ifndef __STDC_CONSTANT_MACROS
#define __STDC_CONSTANT_MACROS
#endif
#include <stdint.h>
#include <string>
#include <memory>