| Index: silk/enc_API.c
|
| diff --git a/silk/enc_API.c b/silk/enc_API.c
|
| index c0143fd5a02b27beff68a9fd33e5d8c9da2d01cb..ec7915ce242e064a23a864d1a13b64783d832d34 100644
|
| --- a/silk/enc_API.c
|
| +++ b/silk/enc_API.c
|
| @@ -40,6 +40,14 @@ POSSIBILITY OF SUCH DAMAGE.
|
| #include "main_FLP.h"
|
| #endif
|
|
|
| +/***************************************/
|
| +/* Read control structure from encoder */
|
| +/***************************************/
|
| +static opus_int silk_QueryEncoder( /* O Returns error code */
|
| + const void *encState, /* I State */
|
| + silk_EncControlStruct *encStatus /* O Encoder Status */
|
| +);
|
| +
|
| /****************************************/
|
| /* Encoder functions */
|
| /****************************************/
|
| @@ -90,7 +98,7 @@ opus_int silk_InitEncoder( /* O Returns error co
|
| /***************************************/
|
| /* Read control structure from encoder */
|
| /***************************************/
|
| -opus_int silk_QueryEncoder( /* O Returns error code */
|
| +static opus_int silk_QueryEncoder( /* O Returns error code */
|
| const void *encState, /* I State */
|
| silk_EncControlStruct *encStatus /* O Encoder Status */
|
| )
|
|
|