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:
-rw-r--r--silk/decoder_set_fs.c2
-rw-r--r--silk/main.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/silk/decoder_set_fs.c b/silk/decoder_set_fs.c
index e44f6596..38ac249c 100644
--- a/silk/decoder_set_fs.c
+++ b/silk/decoder_set_fs.c
@@ -35,7 +35,7 @@ POSSIBILITY OF SUCH DAMAGE.
opus_int silk_decoder_set_fs(
silk_decoder_state *psDec, /* I/O Decoder state pointer */
opus_int fs_kHz, /* I Sampling frequency (kHz) */
- opus_int fs_API_Hz /* I API Sampling frequency (Hz) */
+ opus_int32 fs_API_Hz /* I API Sampling frequency (Hz) */
)
{
opus_int frame_length, ret = 0;
diff --git a/silk/main.h b/silk/main.h
index 9b383c43..32675f69 100644
--- a/silk/main.h
+++ b/silk/main.h
@@ -357,7 +357,7 @@ opus_int silk_init_decoder(
opus_int silk_decoder_set_fs(
silk_decoder_state *psDec, /* I/O Decoder state pointer */
opus_int fs_kHz, /* I Sampling frequency (kHz) */
- opus_int fs_API_Hz /* I API Sampling frequency (Hz) */
+ opus_int32 fs_API_Hz /* I API Sampling frequency (Hz) */
);
/****************/