Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2012-07-27 08:37:19 +0400
committerGregory Maxwell <greg@xiph.org>2012-07-27 08:37:19 +0400
commit446662287e602a75848c62898ed6b13a0bd84c1d (patch)
tree445cbc118e0f506d137c6992113fa0fd5a6106a7
parent7909d8af20883308bc9cb34ec5a292f91139d2b7 (diff)
Fix bkp/s -> kb/s in opus_demo.
-rw-r--r--src/opus_demo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opus_demo.c b/src/opus_demo.c
index 0ca7326e..2a1d371b 100644
--- a/src/opus_demo.c
+++ b/src/opus_demo.c
@@ -763,7 +763,7 @@ int main(int argc, char *argv[])
}
fprintf (stderr, "average bitrate: %7.3f kb/s\n",
1e-3*bits*sampling_rate/(frame_size*(double)count));
- fprintf (stderr, "maximum bitrate: %7.3f bkp/s\n",
+ fprintf (stderr, "maximum bitrate: %7.3f kb/s\n",
1e-3*bits_max*sampling_rate/frame_size);
if (!decode_only)
fprintf (stderr, "active bitrate: %7.3f kb/s\n",