search for: 5bb7b5f

Displaying 4 results from an estimated 4 matches for "5bb7b5f".

2015 Jan 29
2
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...%test_unit_mdct.o %test_unit_dft.o Crazy indentation. > +$(CELT_ARM_NEON_INTR_OBJ): CFLAGS += $(OPUS_ARM_NEON_INTR_CPPFLAGS) $(NE10_CFLAGS) > endif > diff --git a/celt/arm/arm_celt_ne10_fft_map.c b/celt/arm/arm_celt_ne10_fft_map.c > new file mode 100644 > index 0000000..5bb7b5f Please put these tables (and the ones in arm_celt_ne10_mdct_map) in arm_celt_map.c... the goal was to have them all in the same place, so that if we changed the architectures supported or something, we did not have to hunt all over the codebase to update them all. > +int (*const OPUS_FFT_AL...
2015 Jan 29
0
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...gt; Crazy indentation. > >> +$(CELT_ARM_NEON_INTR_OBJ): CFLAGS += $(OPUS_ARM_NEON_INTR_CPPFLAGS) >> $(NE10_CFLAGS) >> endif >> diff --git a/celt/arm/arm_celt_ne10_fft_map.c >> b/celt/arm/arm_celt_ne10_fft_map.c >> new file mode 100644 >> index 0000000..5bb7b5f > > > Please put these tables (and the ones in arm_celt_ne10_mdct_map) in > arm_celt_map.c... the goal was to have them all in the same place, so that > if we changed the architectures supported or something, we did not have to > hunt all over the codebase to update them all. >...
2015 Jan 20
6
[RFC PATCH v1 0/2] Encode optimize using libNE10
Hello opus-dev, I've been cooking up this patchset to integrate NE10 library into opus. Current patchset focuses on encode use case mainly effecting performance of clt_mdct_forward() and opus_fft() (for float only) Glad to report the following on Encode use case: (Measured on my Beaglebone Black Cortex-A8 board) - Performance improvement for encode use case ~= 12.34% (Based on time -p
2015 Jan 20
0
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...tation.o %test_unit_mathops.o \ + %test_unit_mdct.o %test_unit_dft.o +$(CELT_ARM_NEON_INTR_OBJ): CFLAGS += $(OPUS_ARM_NEON_INTR_CPPFLAGS) $(NE10_CFLAGS) endif diff --git a/celt/arm/arm_celt_ne10_fft_map.c b/celt/arm/arm_celt_ne10_fft_map.c new file mode 100644 index 0000000..5bb7b5f --- /dev/null +++ b/celt/arm/arm_celt_ne10_fft_map.c @@ -0,0 +1,65 @@ +/* Copyright (c) 2015-2016 Xiph.Org Foundation + Written by Viswanath Puttagunta */ +/** + @file arm_celt_ne10_fft_map.c + @brief Map for ARM Neon optimizations for fft using NE10 + */ + +/* + Redistribution and use in s...