comparison intfloat_readwrite.h @ 567:bd4052d9050c libavutil

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 f4187c1c15a6
children 4d9ad0ed07d0
comparison
equal deleted inserted replaced
566:34198f8250cf 567:bd4052d9050c
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 FFMPEG_INTFLOAT_READWRITE_H 21 #ifndef AVUTIL_INTFLOAT_READWRITE_H
22 #define FFMPEG_INTFLOAT_READWRITE_H 22 #define AVUTIL_INTFLOAT_READWRITE_H
23 23
24 #include <stdint.h> 24 #include <stdint.h>
25 #include "common.h" 25 #include "common.h"
26 26
27 /* IEEE 80 bits extended float */ 27 /* IEEE 80 bits extended float */
35 double av_ext2dbl(const AVExtFloat ext) av_const; 35 double av_ext2dbl(const AVExtFloat ext) av_const;
36 int64_t av_dbl2int(double d) av_const; 36 int64_t av_dbl2int(double d) av_const;
37 int32_t av_flt2int(float d) av_const; 37 int32_t av_flt2int(float d) av_const;
38 AVExtFloat av_dbl2ext(double d) av_const; 38 AVExtFloat av_dbl2ext(double d) av_const;
39 39
40 #endif /* FFMPEG_INTFLOAT_READWRITE_H */ 40 #endif /* AVUTIL_INTFLOAT_READWRITE_H */