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:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2013-05-18 10:50:40 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2013-05-18 10:50:40 +0400
commit359306985b69086e260bb4cc9b053ba00f3125d1 (patch)
treee26b3f5d1c4eb91da7efe3d07b84a8ae7a593fe4 /src/repacketizer.c
parent918acd1564a38c61f3cb2392d3b38f1539f14eda (diff)
Change few remaining instances of short to opus_int16
Diffstat (limited to 'src/repacketizer.c')
-rw-r--r--src/repacketizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repacketizer.c b/src/repacketizer.c
index 26315b62..0c5d840c 100644
--- a/src/repacketizer.c
+++ b/src/repacketizer.c
@@ -98,7 +98,7 @@ opus_int32 opus_repacketizer_out_range_impl(OpusRepacketizer *rp, int begin, int
{
int i, count;
opus_int32 tot_size;
- short *len;
+ opus_int16 *len;
const unsigned char **frames;
if (begin<0 || begin>=end || end>rp->nb_frames)