comparison rational.h @ 392:d0f3bb6e367e libavutil

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents d83531dda292
children 8d25a4b50588
comparison
equal deleted inserted replaced
391:997894c973e2 392:d0f3bb6e367e
23 * @file rational.h 23 * @file rational.h
24 * Rational numbers. 24 * Rational numbers.
25 * @author Michael Niedermayer <michaelni@gmx.at> 25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */ 26 */
27 27
28 #ifndef RATIONAL_H 28 #ifndef FFMPEG_RATIONAL_H
29 #define RATIONAL_H 29 #define FFMPEG_RATIONAL_H
30 30
31 #include <stdint.h> 31 #include <stdint.h>
32 32
33 /** 33 /**
34 * Rational number num/den. 34 * Rational number num/den.
110 * @param max the maximum allowed numerator and denominator 110 * @param max the maximum allowed numerator and denominator
111 * @return (AVRational) d. 111 * @return (AVRational) d.
112 */ 112 */
113 AVRational av_d2q(double d, int max); 113 AVRational av_d2q(double d, int max);
114 114
115 #endif // RATIONAL_H 115 #endif /* FFMPEG_RATIONAL_H */