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
path: root/src
diff options
context:
space:
mode:
authorVincent Penquerc'h <vincent.penquerch@collabora.co.uk>2011-11-23 19:17:30 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2012-03-06 04:58:19 +0400
commitab0b5f5ff388f70a81b4497beef6d7562ebc4068 (patch)
treef8113da0ef1333fb3b10eeed1cac36dd05dd3891 /src
parentc7921088292675c5f6691193a32fff68f36bf296 (diff)
Make input mapping parameter const in multistream API
Diffstat (limited to 'src')
-rw-r--r--src/opus_multistream.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/opus_multistream.c b/src/opus_multistream.c
index ff07accb..7c76e0c3 100644
--- a/src/opus_multistream.c
+++ b/src/opus_multistream.c
@@ -154,7 +154,7 @@ int opus_multistream_encoder_init(
int channels,
int streams,
int coupled_streams,
- unsigned char *mapping,
+ const unsigned char *mapping,
int application
)
{
@@ -193,7 +193,7 @@ OpusMSEncoder *opus_multistream_encoder_create(
int channels,
int streams,
int coupled_streams,
- unsigned char *mapping,
+ const unsigned char *mapping,
int application,
int *error
)
@@ -526,7 +526,7 @@ int opus_multistream_decoder_init(
int channels,
int streams,
int coupled_streams,
- unsigned char *mapping
+ const unsigned char *mapping
)
{
int coupled_size;
@@ -568,7 +568,7 @@ OpusMSDecoder *opus_multistream_decoder_create(
int channels,
int streams,
int coupled_streams,
- unsigned char *mapping,
+ const unsigned char *mapping,
int *error
)
{