blob: d9e0d02309e9fd1b1545d9dd271188d389284fd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- util/lmp3.c Mon May 13 22:51:15 2002
+++ util/listmp3.c Mon May 13 22:50:18 2002
@@ -169,7 +169,7 @@
putchar('\n');
- length = numFrames*(sampleRate > 3200 ? 1152 : 576)/samplerate;
+ length = numFrames*(samplerate > 3200 ? 1152 : 576)/samplerate;
printf("Number of frames: %i\n", numFrames);
printf("Average bitrate: %i\n", bitrateSum/numFrames);
|