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>2011-02-09 07:06:01 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2011-02-09 08:05:47 +0300
commitf919dd7445be38ec8c379279cab9a70b3f5957a8 (patch)
tree1954650e1995d8a4cdadb71f90fe6462df6e8563
parent96e32235a77d481fc7c3683ffa45722bb70a96ae (diff)
5ms frame mode was not working in test_opus.
-rw-r--r--src/test_opus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_opus.c b/src/test_opus.c
index 10ad6131..ab40dd8d 100644
--- a/src/test_opus.c
+++ b/src/test_opus.c
@@ -164,7 +164,7 @@ int main(int argc, char *argv[])
if (strcmp(argv[ args + 1 ], "2.5")==0)
frame_size = sampling_rate/400;
else if (strcmp(argv[ args + 1 ], "5")==0)
- frame_size = sampling_rate/400;
+ frame_size = sampling_rate/200;
else if (strcmp(argv[ args + 1 ], "10")==0)
frame_size = sampling_rate/100;
else if (strcmp(argv[ args + 1 ], "20")==0)