Displaying 1 result from an estimated 1 matches for "spec_has_real_points".
2012 Apr 17
1
[PATCH] Remove local_strtoull, windows has equivalent function _strtoui64
...- *endptr = (char*)src;
- return neg? -ret : ret;
-}
-#endif
-
FLAC__bool grabbag__seektable_convert_specification_to_template(const char *spec, FLAC__bool only_explicit_placeholders, FLAC__uint64 total_samples_to_encode, unsigned sample_rate, FLAC__StreamMetadata *seektable_template, FLAC__bool *spec_has_real_points)
{
unsigned i;
@@ -107,11 +82,7 @@ FLAC__bool grabbag__seektable_convert_specification_to_template(const char *spec
*spec_has_real_points = true;
if(!only_explicit_placeholders) {
char *endptr;
-#ifdef _MSC_VER
- const FLAC__int64 n = local__strtoll(pt, &endptr);
-#else...