Make input mapping parameter const in multistream API

This commit is contained in:
Vincent Penquerc'h 2011-11-23 15:17:30 +00:00 committed by Jean-Marc Valin
parent c792108829
commit ab0b5f5ff3
2 changed files with 8 additions and 8 deletions

View file

@ -55,7 +55,7 @@ OPUS_EXPORT OpusMSEncoder *opus_multistream_encoder_create(
int channels, /**< Number of channels in the input signal */ int channels, /**< Number of channels in the input signal */
int streams, /**< Total number of streams to encode from the input */ int streams, /**< Total number of streams to encode from the input */
int coupled_streams, /**< Number of coupled (stereo) streams to encode */ int coupled_streams, /**< Number of coupled (stereo) streams to encode */
unsigned char *mapping, /**< Encoded mapping between channels and streams */ const unsigned char *mapping, /**< Encoded mapping between channels and streams */
int application, /**< Coding mode (OPUS_APPLICATION_VOIP/OPUS_APPLICATION_AUDIO) */ int application, /**< Coding mode (OPUS_APPLICATION_VOIP/OPUS_APPLICATION_AUDIO) */
int *error /**< Error code */ int *error /**< Error code */
); );
@ -67,7 +67,7 @@ OPUS_EXPORT int opus_multistream_encoder_init(
int channels, /**< Number of channels in the input signal */ int channels, /**< Number of channels in the input signal */
int streams, /**< Total number of streams to encode from the input */ int streams, /**< Total number of streams to encode from the input */
int coupled_streams, /**< Number of coupled (stereo) streams to encode */ int coupled_streams, /**< Number of coupled (stereo) streams to encode */
unsigned char *mapping, /**< Encoded mapping between channels and streams */ const unsigned char *mapping, /**< Encoded mapping between channels and streams */
int application /**< Coding mode (OPUS_APPLICATION_VOIP/OPUS_APPLICATION_AUDIO) */ int application /**< Coding mode (OPUS_APPLICATION_VOIP/OPUS_APPLICATION_AUDIO) */
); );
@ -111,7 +111,7 @@ OPUS_EXPORT OpusMSDecoder *opus_multistream_decoder_create(
int channels, /**< Number of channels to decode */ int channels, /**< Number of channels to decode */
int streams, /**< Total number of coded streams in the multistream */ int streams, /**< Total number of coded streams in the multistream */
int coupled_streams, /**< Number of coupled (stereo) streams in the multistream */ int coupled_streams, /**< Number of coupled (stereo) streams in the multistream */
unsigned char *mapping, /**< Stream to channel mapping table */ const unsigned char *mapping, /**< Stream to channel mapping table */
int *error /**< Error code */ int *error /**< Error code */
); );
@ -122,7 +122,7 @@ OPUS_EXPORT int opus_multistream_decoder_init(
int channels, /**< Number of channels in the input signal */ int channels, /**< Number of channels in the input signal */
int streams, /**< Total number of coded streams */ int streams, /**< Total number of coded streams */
int coupled_streams, /**< Number of coupled (stereo) streams */ int coupled_streams, /**< Number of coupled (stereo) streams */
unsigned char *mapping /**< Stream to channel mapping table */ const unsigned char *mapping /**< Stream to channel mapping table */
); );
/** Returns the number of samples decoded or a negative error code */ /** Returns the number of samples decoded or a negative error code */

View file

@ -154,7 +154,7 @@ int opus_multistream_encoder_init(
int channels, int channels,
int streams, int streams,
int coupled_streams, int coupled_streams,
unsigned char *mapping, const unsigned char *mapping,
int application int application
) )
{ {
@ -193,7 +193,7 @@ OpusMSEncoder *opus_multistream_encoder_create(
int channels, int channels,
int streams, int streams,
int coupled_streams, int coupled_streams,
unsigned char *mapping, const unsigned char *mapping,
int application, int application,
int *error int *error
) )
@ -526,7 +526,7 @@ int opus_multistream_decoder_init(
int channels, int channels,
int streams, int streams,
int coupled_streams, int coupled_streams,
unsigned char *mapping const unsigned char *mapping
) )
{ {
int coupled_size; int coupled_size;
@ -568,7 +568,7 @@ OpusMSDecoder *opus_multistream_decoder_create(
int channels, int channels,
int streams, int streams,
int coupled_streams, int coupled_streams,
unsigned char *mapping, const unsigned char *mapping,
int *error int *error
) )
{ {