[vlc-devel] commit: compilation fix in case that INT64_C isn't defined ( Felix Paul Kühne )

git version control git at videolan.org
Sat Jan 17 00:26:52 CET 2009


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sat Jan 17 00:26:09 2009 +0100| [1cbc9675045e7936904cbd617fe790d30ba880fc] | committer: Felix Paul Kühne 

compilation fix in case that INT64_C isn't defined

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1cbc9675045e7936904cbd617fe790d30ba880fc
---

 .../video_filter/atmo/AtmoExternalCaptureInput.cpp |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/modules/video_filter/atmo/AtmoExternalCaptureInput.cpp b/modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
index 90465ae..1d77ee8 100644
--- a/modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
+++ b/modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
@@ -11,6 +11,10 @@
 #include "AtmoExternalCaptureInput.h"
 #include "AtmoTools.h"
 
+#ifndef INT64_C
+#define INT64_C(c)  c ## LL
+#endif
+
 #if defined(_ATMO_VLC_PLUGIN_)
 
 CAtmoExternalCaptureInput::CAtmoExternalCaptureInput(CAtmoDynData *pAtmoDynData) :




More information about the vlc-devel mailing list