mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
minor comments
This commit is contained in:
@@ -61,7 +61,7 @@ FLAC__bool grabbag__seektable_convert_specification_to_template(const char *spec
|
||||
double sec = atof(pt);
|
||||
if(sec > 0.0) {
|
||||
#if defined _MSC_VER || defined __MINGW32__
|
||||
/* with VC++ you have to spoon feed it the casting */
|
||||
/* with MSVC you have to spoon feed it the casting */
|
||||
unsigned n = (unsigned)((double)(FLAC__int64)total_samples_to_encode / (sec * (double)sample_rate));
|
||||
#else
|
||||
unsigned n = (unsigned)((double)total_samples_to_encode / (sec * (double)sample_rate));
|
||||
|
||||
Reference in New Issue
Block a user