view avutil.h @ 6:0419cc681610 libavutil

Put double-quotes around the install path in the "install-headers" section of the makefiles for libavcodec, libavformat and libavutil. Fixes installing into paths with spaces in them, i.e. Windows. patch by Fredrik Orderud < fredrik . orderud -- at -- idi . ntnu . no >
author diego
date Mon, 07 Nov 2005 01:32:29 +0000
parents ee8f44bb7c4d
children aedb6bd881b9
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 */