comparison integer.h @ 567:bd4052d9050c libavutil

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents b4ff998c79e3
children 8c48a1b999a3
comparison
equal deleted inserted replaced
566:34198f8250cf 567:bd4052d9050c
23 * @file integer.h 23 * @file integer.h
24 * arbitrary precision integers 24 * arbitrary precision integers
25 * @author Michael Niedermayer <michaelni@gmx.at> 25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */ 26 */
27 27
28 #ifndef FFMPEG_INTEGER_H 28 #ifndef AVUTIL_INTEGER_H
29 #define FFMPEG_INTEGER_H 29 #define AVUTIL_INTEGER_H
30 30
31 #include <stdint.h> 31 #include <stdint.h>
32 #include "common.h" 32 #include "common.h"
33 33
34 #define AV_INTEGER_SIZE 8 34 #define AV_INTEGER_SIZE 8
79 * if the AVInteger is too large to fit into an int64_t, 79 * if the AVInteger is too large to fit into an int64_t,
80 * then only the least significant 64bit will be used 80 * then only the least significant 64bit will be used
81 */ 81 */
82 int64_t av_i2int(AVInteger a) av_const; 82 int64_t av_i2int(AVInteger a) av_const;
83 83
84 #endif /* FFMPEG_INTEGER_H */ 84 #endif /* AVUTIL_INTEGER_H */