OLD | NEW |
1 /*********************************************************************** | 1 /*********************************************************************** |
2 Copyright (c) 2006-2011, Skype Limited. All rights reserved. | 2 Copyright (c) 2006-2011, Skype Limited. All rights reserved. |
3 Redistribution and use in source and binary forms, with or without | 3 Redistribution and use in source and binary forms, with or without |
4 modification, are permitted provided that the following conditions | 4 modification, are permitted provided that the following conditions |
5 are met: | 5 are met: |
6 - Redistributions of source code must retain the above copyright notice, | 6 - Redistributions of source code must retain the above copyright notice, |
7 this list of conditions and the following disclaimer. | 7 this list of conditions and the following disclaimer. |
8 - Redistributions in binary form must reproduce the above copyright | 8 - Redistributions in binary form must reproduce the above copyright |
9 notice, this list of conditions and the following disclaimer in the | 9 notice, this list of conditions and the following disclaimer in the |
10 documentation and/or other materials provided with the distribution. | 10 documentation and/or other materials provided with the distribution. |
(...skipping 30 matching lines...) Expand all Loading... |
41 #define PITCH_DRIFT_FAC_Q16 655 /* 0.01 in Q16
*/ | 41 #define PITCH_DRIFT_FAC_Q16 655 /* 0.01 in Q16
*/ |
42 | 42 |
43 void silk_PLC_Reset( | 43 void silk_PLC_Reset( |
44 silk_decoder_state *psDec /* I/O Decoder state
*/ | 44 silk_decoder_state *psDec /* I/O Decoder state
*/ |
45 ); | 45 ); |
46 | 46 |
47 void silk_PLC( | 47 void silk_PLC( |
48 silk_decoder_state *psDec, /* I/O Decoder state
*/ | 48 silk_decoder_state *psDec, /* I/O Decoder state
*/ |
49 silk_decoder_control *psDecCtrl, /* I/O Decoder contr
ol */ | 49 silk_decoder_control *psDecCtrl, /* I/O Decoder contr
ol */ |
50 opus_int16 frame[], /* I/O signal
*/ | 50 opus_int16 frame[], /* I/O signal
*/ |
51 opus_int lost /* I Loss flag
*/ | 51 opus_int lost, /* I Loss flag
*/ |
| 52 int arch /* I Run-time archit
ecture */ |
52 ); | 53 ); |
53 | 54 |
54 void silk_PLC_glue_frames( | 55 void silk_PLC_glue_frames( |
55 silk_decoder_state *psDec, /* I/O decoder state
*/ | 56 silk_decoder_state *psDec, /* I/O decoder state
*/ |
56 opus_int16 frame[], /* I/O signal
*/ | 57 opus_int16 frame[], /* I/O signal
*/ |
57 opus_int length /* I length of signa
l */ | 58 opus_int length /* I length of signa
l */ |
58 ); | 59 ); |
59 | 60 |
60 #endif | 61 #endif |
61 | 62 |
OLD | NEW |