Displaying 3 results from an estimated 3 matches for "silk_process_nlsfs".
2016 Jul 06
1
opus Digest, Vol 90, Issue 4
...1227580
> ---
> silk/process_NLSFs.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/silk/process_NLSFs.c b/silk/process_NLSFs.c
> index c27cf03..d9123ef 100644
> --- a/silk/process_NLSFs.c
> +++ b/silk/process_NLSFs.c
> @@ -100,6 +100,6 @@ void silk_process_NLSFs(
>
> } else {
> /* Copy LPC coefficients for first half from second half */
> - silk_memcpy( PredCoef_Q12[ 0 ], PredCoef_Q12[ 1 ],
> psEncC->predictLPCOrder * sizeof( opus_int16 ) );
> + silk_memmove( PredCoef_Q12[ 0 ], PredCoef_Q12[ 1 ],
> psEncC...
2016 Jul 04
1
[PATCH] SILK: use silk_memmove for potentially overlapping areas
Fixes CID 1227580
---
silk/process_NLSFs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/silk/process_NLSFs.c b/silk/process_NLSFs.c
index c27cf03..d9123ef 100644
--- a/silk/process_NLSFs.c
+++ b/silk/process_NLSFs.c
@@ -100,6 +100,6 @@ void silk_process_NLSFs(
} else {
/* Copy LPC coefficients for first half from second half */
- silk_memcpy( PredCoef_Q12[ 0 ], PredCoef_Q12[ 1 ], psEncC->predictLPCOrder * sizeof( opus_int16 ) );
+ silk_memmove( PredCoef_Q12[ 0 ], PredCoef_Q12[ 1 ], psEncC->predictLPCOrder * sizeof( op...
2016 Jul 14
6
Several patches of ARM NEON optimization
I rebased my previous 3 patches to the current master with minor changes.
Patches 1 to 3 replace all my previous submitted patches.
Patches 4 and 5 are new.
Thanks,
Linfeng Zhang