comparison lsp.h @ 6709:f18b7851b5a5 libavcodec

Use filename as multiple inclusion guard.
author diego
date Sun, 27 Apr 2008 10:01:07 +0000
parents 2cb901474f6f
children 459fe563a4dc
comparison
equal deleted inserted replaced
6708:5fcc06997ff0 6709:f18b7851b5a5
18 * You should have received a copy of the GNU Lesser General Public 18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software 19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */ 21 */
22 22
23 #ifndef FFMPEG_ACELP_LPC_H 23 #ifndef FFMPEG_LSP_H
24 #define FFMPEG_ACELP_LPC_H 24 #define FFMPEG_LSP_H
25 /** 25 /**
26 (I.F) means fixed-point value with F fractional and I integer bits 26 (I.F) means fixed-point value with F fractional and I integer bits
27 */ 27 */
28 28
29 /** 29 /**
58 * \param lsp_2nd LSP coefficients of the second subframe (-0x8000 <= (0.15) < 0x8000) 58 * \param lsp_2nd LSP coefficients of the second subframe (-0x8000 <= (0.15) < 0x8000)
59 * \param lsp_prev LSP coefficients from the second subframe of the previous frame (-0x8000 <= (0.15) < 0x8000) 59 * \param lsp_prev LSP coefficients from the second subframe of the previous frame (-0x8000 <= (0.15) < 0x8000)
60 */ 60 */
61 void ff_acelp_lp_decode(int16_t* lp_1st, int16_t* lp_2nd, const int16_t* lsp_2nd, const int16_t* lsp_prev); 61 void ff_acelp_lp_decode(int16_t* lp_1st, int16_t* lp_2nd, const int16_t* lsp_2nd, const int16_t* lsp_prev);
62 62
63 #endif // FFMPEG_ACELP_LPC_H 63 #endif /* FFMPEG_LSP_H */