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

git version control git at videolan.org
Tue Jan 13 18:34:38 CET 2009


vlc | branch: 0.9-bugfix | Felix Paul Kühne <fkuehne at videolan.org> | Tue Jan 13 18:34:06 2009 +0100| [fdfcf525b358ee78dc5a2825d62e509899ab5e27] | 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=fdfcf525b358ee78dc5a2825d62e509899ab5e27
---

 .../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 535cc95..8d8cec6 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