comparison mathops.h @ 7760:c4a4495715dd libavcodec

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 84dd52687931
children c6e2ffef3797
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
17 * 17 *
18 * You should have received a copy of the GNU Lesser General Public 18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software 19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */ 21 */
22 #ifndef FFMPEG_MATHOPS_H 22 #ifndef AVCODEC_MATHOPS_H
23 #define FFMPEG_MATHOPS_H 23 #define AVCODEC_MATHOPS_H
24 24
25 #include "libavutil/common.h" 25 #include "libavutil/common.h"
26 26
27 #ifdef ARCH_X86_32 27 #ifdef ARCH_X86_32
28 28
81 81
82 #ifndef MLS16 82 #ifndef MLS16
83 # define MLS16(rt, ra, rb) ((rt) -= (ra) * (rb)) 83 # define MLS16(rt, ra, rb) ((rt) -= (ra) * (rb))
84 #endif 84 #endif
85 85
86 #endif /* FFMPEG_MATHOPS_H */ 86 #endif /* AVCODEC_MATHOPS_H */
87 87