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 /include
parent918acd1564a38c61f3cb2392d3b38f1539f14eda (diff)
Change few remaining instances of short to opus_int16
Diffstat (limited to 'include')
-rw-r--r--include/opus.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/opus.h b/include/opus.h
index a87a4456..38817b40 100644
--- a/include/opus.h
+++ b/include/opus.h
@@ -520,7 +520,7 @@ OPUS_EXPORT void opus_decoder_destroy(OpusDecoder *st);
* @param [in] len <tt>opus_int32</tt>: size of data
* @param [out] out_toc <tt>char*</tt>: TOC pointer
* @param [out] frames <tt>char*[48]</tt> encapsulated frames
- * @param [out] size <tt>short[48]</tt> sizes of the encapsulated frames
+ * @param [out] size <tt>opus_int16[48]</tt> sizes of the encapsulated frames
* @param [out] payload_offset <tt>int*</tt>: returns the position of the payload within the packet (in bytes)
* @returns number of frames
*/
@@ -529,7 +529,7 @@ OPUS_EXPORT int opus_packet_parse(
opus_int32 len,
unsigned char *out_toc,
const unsigned char *frames[48],
- short size[48],
+ opus_int16 size[48],
int *payload_offset
) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(4);