00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <ctype.h>
00023 #include <limits.h>
00024 #include <stdlib.h>
00025
00026 #include "libavutil/avstring.h"
00027 #include "libavutil/mathematics.h"
00028
00029 static char *check_nan_suffix(char *s)
00030 {
00031 char *start = s;
00032
00033 if (*s++ != '(')
00034 return start;
00035
00036 while ((*s >= 'a' && *s <= 'z') || (*s >= 'A' && *s <= 'Z') ||
00037 (*s >= '0' && *s <= '9') || *s == '_')
00038 s++;
00039
00040 return *s == ')' ? s + 1 : start;
00041 }
00042
00043 #undef strtod
00044 double strtod(const char *, char **);
00045
00046 double avpriv_strtod(const char *nptr, char **endptr)
00047 {
00048 char *end;
00049 double res;
00050
00051
00052 while (isspace(*nptr))
00053 nptr++;
00054
00055 if (!av_strncasecmp(nptr, "infinity", 8)) {
00056 end = nptr + 8;
00057 res = INFINITY;
00058 } else if (!av_strncasecmp(nptr, "inf", 3)) {
00059 end = nptr + 3;
00060 res = INFINITY;
00061 } else if (!av_strncasecmp(nptr, "+infinity", 9)) {
00062 end = nptr + 9;
00063 res = INFINITY;
00064 } else if (!av_strncasecmp(nptr, "+inf", 4)) {
00065 end = nptr + 4;
00066 res = INFINITY;
00067 } else if (!av_strncasecmp(nptr, "-infinity", 9)) {
00068 end = nptr + 9;
00069 res = -INFINITY;
00070 } else if (!av_strncasecmp(nptr, "-inf", 4)) {
00071 end = nptr + 4;
00072 res = -INFINITY;
00073 } else if (!av_strncasecmp(nptr, "nan", 3)) {
00074 end = check_nan_suffix(nptr + 3);
00075 res = NAN;
00076 } else if (!av_strncasecmp(nptr, "+nan", 4) ||
00077 !av_strncasecmp(nptr, "-nan", 4)) {
00078 end = check_nan_suffix(nptr + 4);
00079 res = NAN;
00080 } else if (!av_strncasecmp(nptr, "0x", 2) ||
00081 !av_strncasecmp(nptr, "-0x", 3) ||
00082 !av_strncasecmp(nptr, "+0x", 3)) {
00083
00084
00085 res = strtoll(nptr, &end, 16);
00086 } else {
00087 res = strtod(nptr, &end);
00088 }
00089
00090 if (endptr)
00091 *endptr = end;
00092
00093 return res;
00094 }