fixed.c
资源名称:VC++视频传输.rar [点击查看]
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:0k
源码类别:
VC书籍
开发平台:
Visual C++
- /*
- * libmad - MPEG audio decoder library
- */
- # ifdef HAVE_CONFIG_H
- # include "config.h"
- # endif
- # include "global.h"
- # include "fixed.h"
- /*
- * NAME: fixed->abs()
- * DESCRIPTION: return absolute value of a fixed-point number
- */
- mad_fixed_t mad_f_abs(mad_fixed_t x)
- {
- return x < 0 ? -x : x;
- }