Displaying 4 results from an estimated 4 matches for "parse_double_".
2013 Apr 11
0
[PATCH 1/2] Use C locale when reading ReplayGain tag
...++++++++++++++++++++++-------
1 file changed, 25 insertions(+), 7 deletions(-)
diff --git a/src/share/grabbag/replaygain.c b/src/share/grabbag/replaygain.c
index 43f1be0..347319f 100644
--- a/src/share/grabbag/replaygain.c
+++ b/src/share/grabbag/replaygain.c
@@ -606,6 +606,8 @@ static FLAC__bool parse_double_(const FLAC__StreamMetadata_VorbisComment_Entry *
FLAC__bool grabbag__replaygain_load_from_vorbiscomment(const FLAC__StreamMetadata *block, FLAC__bool album_mode, FLAC__bool strict, double *reference, double *gain, double *peak)
{
int reference_offset, gain_offset, peak_offset;
+ char *saved_loc...
2006 Nov 11
3
Re: build issues
On Sat, Nov 11, 2006 at 03:03:12PM -0800, Josh Coalson wrote:
> ok, checked in some fixes that should take care of most of the
> warnings.
Nice! Current complete set of warnings:
replaygain.c: In function 'parse_double_':
replaygain.c:612: warning: comparison between signed and unsigned
replaygain.c:612: warning: signed and unsigned type in conditional expression
encode.c:2686: warning: 'limit_channel_mask' defined but not used
There are lots of minor differences in the 'make check' output, bu...
2014 Apr 30
2
make fullcheck fails: strtod/atof and locale
...;= flac__utils_parse_skip_until_specification()
(--skip, --until)
src/libFLAC/stream_encoder.c
FLAC__stream_encoder_set_apodization()
(-A gauss, -A tukey)
src/share/grabbag/cuesheet.c
local__parse_ms_() <= local__cuesheet_parse_() <= grabbag__cuesheet_parse()
src/share/grabbag/replaygain.c
parse_double_() <= grabbag__replaygain_load_from_vorbiscomment()
*** comments ***
1) local__parse_ms_() have strspn(s, "0123456789.") so decimal comma is not allowed in cuesheets
2) local__parse_timecode_() have strspn(s, "1234567890.,") so comma is allowed in --skip and --until option...
2006 Nov 09
3
Re: build issues
On Wed, Nov 08, 2006 at 05:28:39PM -0800, Josh Coalson wrote:
> which tests? for a little while there, test_seeking would fail
> because of an intermittent bug in the seek routine which has been
> fixed. test_flac and test_metaflac are currently failing because
> of mismatches in the vendor string that I mentioned before.
Ok, I updated to CVS as of this morning, and now only two of