2005-08-01 20:07:05 +00:00
|
|
|
#ifndef AVUTIL_H
|
|
|
|
#define AVUTIL_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file avutil.h
|
|
|
|
* external api header.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-12-22 01:10:11 +00:00
|
|
|
#define AV_STRINGIFY(s) AV_TOSTRING(s)
|
2005-08-01 20:07:05 +00:00
|
|
|
#define AV_TOSTRING(s) #s
|
|
|
|
|
2005-12-22 01:10:11 +00:00
|
|
|
#define LIBAVUTIL_VERSION_INT ((49<<16)+(0<<8)+0)
|
|
|
|
#define LIBAVUTIL_VERSION 49.0.0
|
|
|
|
#define LIBAVUTIL_BUILD LIBAVUTIL_VERSION_INT
|
2005-08-01 20:07:05 +00:00
|
|
|
|
2005-12-22 01:10:11 +00:00
|
|
|
#define LIBAVUTIL_IDENT "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION)
|
2005-08-01 20:07:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "mathematics.h"
|
|
|
|
#include "rational.h"
|
|
|
|
#include "integer.h"
|
|
|
|
#include "intfloat_readwrite.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* AVUTIL_H */
|