From 712a40b59a0f451a558d88db1f9f124463016f97 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Sun, 23 Oct 2005 02:11:16 +0000 Subject: big ffmpeg update it is likely to break, so please keep both pieces CVS patchset: 7767 CVS date: 2005/10/23 02:11:16 --- src/libffmpeg/libavutil/avutil.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/libffmpeg/libavutil/avutil.h (limited to 'src/libffmpeg/libavutil/avutil.h') diff --git a/src/libffmpeg/libavutil/avutil.h b/src/libffmpeg/libavutil/avutil.h new file mode 100644 index 000000000..b9f930a56 --- /dev/null +++ b/src/libffmpeg/libavutil/avutil.h @@ -0,0 +1,34 @@ +#ifndef AVUTIL_H +#define AVUTIL_H + +/** + * @file avutil.h + * external api header. + */ + + +#ifdef __cplusplus +extern "C" { +#endif + +#define AV_STRINGIFY(s) AV_TOSTRING(s) +#define AV_TOSTRING(s) #s + +#define LIBAVUTIL_VERSION_INT ((49<<16)+(0<<8)+0) +#define LIBAVUTIL_VERSION 49.0.0 +#define LIBAVUTIL_BUILD LIBAVUTIL_VERSION_INT + +#define LIBAVUTIL_IDENT "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION) + + +#include "common.h" +#include "mathematics.h" +#include "rational.h" +#include "integer.h" +#include "intfloat_readwrite.h" + +#ifdef __cplusplus +} +#endif + +#endif /* AVUTIL_H */ -- cgit v1.2.3