view src/paranormal/pn_utils.h @ 279:1983383db0f5 trunk

[svn] build fixes: - now configure properly find flac 1.1.3beta2 - fix CXXFLAGS. it would lose audacious include path if --with-libFLAC was given. - suppress gcc 4.1.1 compile warnings
author yaz
date Sun, 19 Nov 2006 22:54:10 -0800
parents fd9c0a5871ac
children 3b034150d31e
line wrap: on
line source

#ifndef _PN_UTILS_H
#define _PN_UTILS_H

#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif

#define CAP(i,c) (i > c ? c : i < -(c) ? -(c) : i)
#define CAPHILO(i,h,l) (i > h ? h : i < l ? l : i)
#define CAPHI(i,h) (i > h ? h : i)
#define CAPLO(i,l) (i < l ? l : i)

#define PN_IMG_INDEX(x,y) ((x) + (pn_image_data->width * (y)))

#endif /* _PN_UTILS_H */