residu.asm
来自「TI C54写的G729代码,视线8kbps高质量语音解码,汇编优化」· 汇编 代码 · 共 33 行
ASM
33 行
;==========================================================================
; File Name
; ----------
; RESIDU.ASM
;
; Brief Description of the Code:
; ------------------------------
; Compute the LPC residual by filtering the input speech through A(z).
;
; Ref
; ------
; FILTER.C (Residu)
;==========================================================================
.mmregs
.include ../include/const.h
.include ../include/tab_ld8a.h
.include ../include/ld8amem.h
.text
.def Residu
.def Residu2
;-----------------------------------------------------------------------
; Residu
;-----------------------------------------------------------------------
; void Residu(
; Word16 a[], /* (i) Q12 : prediction coefficients */
; Word16 x[], /* (i) : speech (values x[-m..-1] are needed */
; Word16 y[], /* (o) : residual signal */
; Word16 lg /* (i) : size of filtering */
; )
;-----------------------------------------------------------------------
; y(n) = x(n) +
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?