Vorbis: do not convert out of range properties to int

The length comes from the difference between two 64 bit granule
positions over a sample rate read from the identification header, so a
file can declare 2^62 samples at 1 Hz. The millisecond length is then
~4.6e21 and the conversion to int is undefined:

  taglib/ogg/vorbis/vorbisproperties.cpp:168:39: runtime error:
  4.61169e+21 is outside the range of representable values of type 'int'

The bitrate on the next line is reachable the other way round, with one
sample at a high declared rate making the divisor tiny:

  taglib/ogg/vorbis/vorbisproperties.cpp:169:39: runtime error:
  3.51569e+13 is outside the range of representable values of type 'int'

Leave the field at its default rather than converting.

Two reports before the change, none after. The 23 FLAC, APE, Ogg
Vorbis, Opus and Speex files in tests/data report identical channels,
sample rate, bitrate and length before and after, and the suite runs
576 tests either way.

Assisted-By: Claude Code (Claude Opus 5)
This commit is contained in:
manuaudio
2026-08-15 18:18:23 +02:00
committed by Urs Fleisch
parent b4a1f3d7d1
commit 16d2585f84
+14 -2
View File
@@ -25,6 +25,8 @@
#include "vorbisproperties.h"
#include <limits>
#include "tstring.h"
#include "tdebug.h"
#include "oggpageheader.h"
@@ -165,8 +167,18 @@ void Vorbis::Properties::read(File *file)
for (unsigned int i = 0; i < 3; ++i) {
fileLengthWithoutOverhead -= file->packet(i).size();
}
d->length = static_cast<int>(length + 0.5);
d->bitrate = static_cast<int>(static_cast<double>(fileLengthWithoutOverhead) * 8.0 / length + 0.5);
// The granule positions are 64 bit and the sample rate is read from the
// file, so the millisecond length can land outside int, and a short
// stream at a high rate does the same to the bitrate. Converting a
// double the destination type cannot represent is undefined, so leave
// the field at its default instead.
if(length > 0.0 && length < static_cast<double>(std::numeric_limits<int>::max())) {
d->length = static_cast<int>(length + 0.5);
const double bitrate = static_cast<double>(fileLengthWithoutOverhead) * 8.0 / length;
if(bitrate >= 0.0 && bitrate < static_cast<double>(std::numeric_limits<int>::max()))
d->bitrate = static_cast<int>(bitrate + 0.5);
}
}
}
else {