view avutil.h @ 16:0e94608e337f libavutil

Create symbolic links for all library sonames and clean up Makefiles. based on a patch by Luca Barbato < lu_zero -- at -- gentoo -- dot -- org >
author diego
date Sat, 14 Jan 2006 03:39:02 +0000
parents aedb6bd881b9
children b6594d61c8b2
line wrap: on
line source

#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 */