comparison avcore.h @ 22:0899fc09d43c libavcore

Adopt a hierarchical name scheme for the imgutils.h API. Simplify grepping and somewhat more consistent with the scheme adopted by other FFmpeg modules API.
author stefano
date Tue, 07 Sep 2010 19:15:17 +0000
parents 8a62c1403cd0
children 478992775cf8
comparison
equal deleted inserted replaced
21:3b8eec1cfdaa 22:0899fc09d43c
25 */ 25 */
26 26
27 #include "libavutil/avutil.h" 27 #include "libavutil/avutil.h"
28 28
29 #define LIBAVCORE_VERSION_MAJOR 0 29 #define LIBAVCORE_VERSION_MAJOR 0
30 #define LIBAVCORE_VERSION_MINOR 6 30 #define LIBAVCORE_VERSION_MINOR 7
31 #define LIBAVCORE_VERSION_MICRO 0 31 #define LIBAVCORE_VERSION_MICRO 0
32 32
33 #define LIBAVCORE_VERSION_INT AV_VERSION_INT(LIBAVCORE_VERSION_MAJOR, \ 33 #define LIBAVCORE_VERSION_INT AV_VERSION_INT(LIBAVCORE_VERSION_MAJOR, \
34 LIBAVCORE_VERSION_MINOR, \ 34 LIBAVCORE_VERSION_MINOR, \
35 LIBAVCORE_VERSION_MICRO) 35 LIBAVCORE_VERSION_MICRO)
53 /** 53 /**
54 * Return the libavcore license. 54 * Return the libavcore license.
55 */ 55 */
56 const char *avcore_license(void); 56 const char *avcore_license(void);
57 57
58 /**
59 * Those FF_API_* defines are not part of public API.
60 * They may change, break or disappear at any time.
61 */
62 #ifndef FF_API_OLD_IMAGE_NAMES
63 #define FF_API_OLD_IMAGE_NAMES (LIBAVCORE_VERSION_MAJOR < 1)
64 #endif
65
58 #endif /* AVCORE_AVCORE_H */ 66 #endif /* AVCORE_AVCORE_H */