• Main Page
  • Related Pages
  • Modules
  • Data Structures
  • Files
  • File List
  • Globals

libavutil/avutil.h

Go to the documentation of this file.
00001 /*
00002  * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
00003  *
00004  * This file is part of FFmpeg.
00005  *
00006  * FFmpeg is free software; you can redistribute it and/or
00007  * modify it under the terms of the GNU Lesser General Public
00008  * License as published by the Free Software Foundation; either
00009  * version 2.1 of the License, or (at your option) any later version.
00010  *
00011  * FFmpeg is distributed in the hope that it will be useful,
00012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014  * Lesser General Public License for more details.
00015  *
00016  * You should have received a copy of the GNU Lesser General Public
00017  * License along with FFmpeg; if not, write to the Free Software
00018  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
00019  */
00020 
00021 #ifndef AVUTIL_AVUTIL_H
00022 #define AVUTIL_AVUTIL_H
00023 
00030 #define AV_STRINGIFY(s)         AV_TOSTRING(s)
00031 #define AV_TOSTRING(s) #s
00032 
00033 #define AV_VERSION_INT(a, b, c) (a<<16 | b<<8 | c)
00034 #define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c
00035 #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
00036 
00037 #define LIBAVUTIL_VERSION_MAJOR 49
00038 #define LIBAVUTIL_VERSION_MINOR 15
00039 #define LIBAVUTIL_VERSION_MICRO  0
00040 
00041 #define LIBAVUTIL_VERSION_INT   AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
00042                                                LIBAVUTIL_VERSION_MINOR, \
00043                                                LIBAVUTIL_VERSION_MICRO)
00044 #define LIBAVUTIL_VERSION       AV_VERSION(LIBAVUTIL_VERSION_MAJOR,     \
00045                                            LIBAVUTIL_VERSION_MINOR,     \
00046                                            LIBAVUTIL_VERSION_MICRO)
00047 #define LIBAVUTIL_BUILD         LIBAVUTIL_VERSION_INT
00048 
00049 #define LIBAVUTIL_IDENT         "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION)
00050 
00054 unsigned avutil_version(void);
00055 
00056 #include "common.h"
00057 #include "mathematics.h"
00058 #include "rational.h"
00059 #include "intfloat_readwrite.h"
00060 #include "log.h"
00061 #include "pixfmt.h"
00062 
00063 #endif /* AVUTIL_AVUTIL_H */

Generated on Tue Nov 4 2014 12:59:24 for ffmpeg by  doxygen 1.7.1