Skip to content
Snippets Groups Projects
Commit 44666228 authored by Gregory Maxwell's avatar Gregory Maxwell
Browse files

Fix bkp/s -> kb/s in opus_demo.

parent 7909d8af
No related branches found
No related tags found
No related merge requests found
...@@ -763,7 +763,7 @@ int main(int argc, char *argv[]) ...@@ -763,7 +763,7 @@ int main(int argc, char *argv[])
} }
fprintf (stderr, "average bitrate: %7.3f kb/s\n", fprintf (stderr, "average bitrate: %7.3f kb/s\n",
1e-3*bits*sampling_rate/(frame_size*(double)count)); 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); 1e-3*bits_max*sampling_rate/frame_size);
if (!decode_only) if (!decode_only)
fprintf (stderr, "active bitrate: %7.3f kb/s\n", fprintf (stderr, "active bitrate: %7.3f kb/s\n",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment