comparison mathematics.h @ 392:d0f3bb6e367e libavutil

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents d76a36742464
children b76b4c3a5dde
comparison
equal deleted inserted replaced
391:997894c973e2 392:d0f3bb6e367e
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #ifndef MATHEMATICS_H 21 #ifndef FFMPEG_MATHEMATICS_H
22 #define MATHEMATICS_H 22 #define FFMPEG_MATHEMATICS_H
23 23
24 #include "rational.h" 24 #include "rational.h"
25 25
26 enum AVRounding { 26 enum AVRounding {
27 AV_ROUND_ZERO = 0, ///< round toward zero 27 AV_ROUND_ZERO = 0, ///< round toward zero
46 /** 46 /**
47 * rescale a 64bit integer by 2 rational numbers. 47 * rescale a 64bit integer by 2 rational numbers.
48 */ 48 */
49 int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq); 49 int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq);
50 50
51 #endif /* MATHEMATICS_H */ 51 #endif /* FFMPEG_MATHEMATICS_H */