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

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-02-02 13:05:11 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-02-02 13:05:11 +0300
commitbbe6df88ed3b43d5cf632e16a8881482fa5337d3 (patch)
treeee845214a149883e5c600a8105f1912864149375
parent276e6afc03b93dc6d8e6df1e59502aaa9ff80379 (diff)
Fix reporting of bit-rate in decoderv0.1.0
-rw-r--r--tools/celtdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/celtdec.c b/tools/celtdec.c
index 0806243..0e04081 100644
--- a/tools/celtdec.c
+++ b/tools/celtdec.c
@@ -582,7 +582,7 @@ int main(int argc, char **argv)
}
if (print_bitrate) {
- celt_int32_t tmp=40;
+ celt_int32_t tmp=op.bytes;
char ch=13;
fputc (ch, stderr);
fprintf (stderr, "Bitrate in use: %d bytes/packet ", tmp);