Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: celt/celt_lpc.h

Issue 107243004: Updating Opus to release 1.1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/opus
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « celt/celt_encoder.c ('k') | celt/celt_lpc.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 int _celt_autocorr(const opus_val16 *x, opus_val32 *ac, const opus_val16 *window , int overlap, int lag, int n); 51 int _celt_autocorr(const opus_val16 *x, opus_val32 *ac,
52 const opus_val16 *window, int overlap, int lag, int n, int arch);
52 53
53 #endif /* PLC_H */ 54 #endif /* PLC_H */
OLDNEW
« no previous file with comments | « celt/celt_encoder.c ('k') | celt/celt_lpc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698