Skip to content
Snippets Groups Projects
Unverified Commit c43633d1 authored by Felicia Lim's avatar Felicia Lim
Browse files

Fix OPUS_ARG_NONNULL indices in opus_multistream.h

parent c293dede
No related branches found
No related tags found
No related merge requests found
...@@ -273,7 +273,7 @@ OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusMSEncoder *opus_multistream_surround_enc ...@@ -273,7 +273,7 @@ OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusMSEncoder *opus_multistream_surround_enc
unsigned char *mapping, unsigned char *mapping,
int application, int application,
int *error int *error
) OPUS_ARG_NONNULL(5); ) OPUS_ARG_NONNULL(4) OPUS_ARG_NONNULL(5) OPUS_ARG_NONNULL(6);
/** Initialize a previously allocated multistream encoder state. /** Initialize a previously allocated multistream encoder state.
* The memory pointed to by \a st must be at least the size returned by * The memory pointed to by \a st must be at least the size returned by
...@@ -342,7 +342,7 @@ OPUS_EXPORT int opus_multistream_surround_encoder_init( ...@@ -342,7 +342,7 @@ OPUS_EXPORT int opus_multistream_surround_encoder_init(
int *coupled_streams, int *coupled_streams,
unsigned char *mapping, unsigned char *mapping,
int application int application
) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(6); ) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(5) OPUS_ARG_NONNULL(6) OPUS_ARG_NONNULL(7);
/** Encodes a multistream Opus frame. /** Encodes a multistream Opus frame.
* @param st <tt>OpusMSEncoder*</tt>: Multistream encoder state. * @param st <tt>OpusMSEncoder*</tt>: Multistream encoder state.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment