preemp.f

来自「lpc 2400 bps语音编解码程序」· F 代码 · 共 31 行

F
31
字号
********************************************************************
*
*	PREEMP Version 55
*
********************************************************************
*
*   Preemphasize speech with a single-zero filter.
*  (When coef = .9375, preemphasis is as in LPC43.)
*
* Inputs:
*  NSAMP  - Number of samples to filter
*  INBUF  - Input speech buffer
*  COEF   - Preemphasis coefficient
* In/Out:
*  Z      - Filter state
* Output:
*  PEBUF  - Preemphasized speech buffer (can be equal to INBUF)
*
	subroutine preemp(inbuf, pebuf, nsamp, coef, z)
	integer nsamp, i
	real temp, inbuf(nsamp), pebuf(nsamp), coef, z

	do 10 i = 1, nsamp
	    temp = inbuf(i) - coef*z
	    z = inbuf(i)
	    pebuf(i) = temp
10	continue

	return
	end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?