| OLD | NEW |
| 1 /* Copyright (c) 2009-2010 Xiph.Org Foundation | 1 /* Copyright (c) 2009-2010 Xiph.Org Foundation |
| 2 Written by Jean-Marc Valin */ | 2 Written by Jean-Marc Valin */ |
| 3 /* | 3 /* |
| 4 Redistribution and use in source and binary forms, with or without | 4 Redistribution and use in source and binary forms, with or without |
| 5 modification, are permitted provided that the following conditions | 5 modification, are permitted provided that the following conditions |
| 6 are met: | 6 are met: |
| 7 | 7 |
| 8 - Redistributions of source code must retain the above copyright | 8 - Redistributions of source code must retain the above copyright |
| 9 notice, this list of conditions and the following disclaimer. | 9 notice, this list of conditions and the following disclaimer. |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 int ord, | 41 int ord, |
| 42 opus_val16 *mem); | 42 opus_val16 *mem); |
| 43 | 43 |
| 44 void celt_iir(const opus_val32 *x, | 44 void celt_iir(const opus_val32 *x, |
| 45 const opus_val16 *den, | 45 const opus_val16 *den, |
| 46 opus_val32 *y, | 46 opus_val32 *y, |
| 47 int N, | 47 int N, |
| 48 int ord, | 48 int ord, |
| 49 opus_val16 *mem); | 49 opus_val16 *mem); |
| 50 | 50 |
| 51 void _celt_autocorr(const opus_val16 *x, opus_val32 *ac, const opus_val16 *windo
w, int overlap, int lag, int n); | 51 int _celt_autocorr(const opus_val16 *x, opus_val32 *ac, const opus_val16 *window
, int overlap, int lag, int n); |
| 52 | 52 |
| 53 #endif /* PLC_H */ | 53 #endif /* PLC_H */ |
| OLD | NEW |