Displaying 8 results from an estimated 8 matches for "39,30".
2011 Sep 01
0
[PATCH 5/5] resample: Add NEON optimized inner_product_single for floating point
....
---
libspeex/resample_neon.h | 101 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 101 insertions(+), 0 deletions(-)
diff --git a/libspeex/resample_neon.h b/libspeex/resample_neon.h
index ba93e41..e7e981e 100644
--- a/libspeex/resample_neon.h
+++ b/libspeex/resample_neon.h
@@ -39,6 +39,30 @@
#include <arm_neon.h>
#ifdef FIXED_POINT
+#ifdef __thumb2__
+static inline int32_t saturate_32bit_to_16bit(int32_t a) {
+ int32_t ret;
+ asm ("ssat %[ret], #16, %[a]"
+ : [ret] "=&r" (ret)
+ : [a] "r" (a)
+ : );...
2011 Sep 01
6
[PATCH 0/5] ARM NEON optimization for samplerate converter
From: Jyri Sarha <jsarha at ti.com>
I optimized Speex resampler for NEON capable ARM CPUs. The first patch
should speed up resampling on any platform that can spare the
increased memory usage. It would be nice to have these merged to the
master branch. Please let me know if there is anything I can do to
help the the merge. The patches have been rebased on top of master
branch in
2007 Aug 09
0
Branch 'vivi' - 6 commits - configure.ac vivified/core vivified/dock vivified/Makefile.am vivified/ui
...i/Makefile.am | 10 +-
vivified/ui/main.c | 25 +----
vivified/ui/vivi_commandline.c | 75 +++++++++++++++
vivified/ui/vivi_commandline.h | 54 +++++++++++
16 files changed, 828 insertions(+), 24 deletions(-)
New commits:
diff-tree e506ea7bfceb2b1a0a9237141d6137cf39110233 (from 555b7cbb3f3edd2e9c5293e8c8d5d1f9b6012531)
Author: Benjamin Otte <otte at gnome.org>
Date: Thu Aug 9 14:24:12 2007 +0200
implement size_request, size_allocate and foreach
why does GtkBin not implement this?
diff --git a/vivified/dock/vivi_docklet.c b/vivified/dock/...
2007 Jan 16
0
9 commits - libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_audio_stream.c libswfdec/swfdec_audio_stream.h libswfdec/swfdec_cache.c libswfdec/swfdec_cached.c libswfdec/swfdec_cached.h libswfdec/swfdec_edittext_movie.c libswfdec/swfdec_image.c
...tream.h
+++ b/libswfdec/swfdec_audio_stream.h
@@ -23,6 +23,7 @@
#define _SWFDEC_AUDIO_STREAM_H_
#include <libswfdec/swfdec_audio_internal.h>
+#include <libswfdec/swfdec_codec.h>
G_BEGIN_DECLS
@@ -42,6 +43,7 @@ struct _SwfdecAudioStream
SwfdecSprite * sprite; /* sprite we're playing back */
SwfdecSound * sound; /* sound we're playing */
+ const SwfdecAudioCodec *codec; /* codec used by this stream */
gpointer decoder; /* decoder used for this frame */
SwfdecAudioOut format; /* format used by decoder */
unsigned int playback_skip; /* numbe...
2012 Oct 08
5
[PATCH v4 0/5] Finish hotplugging support.
This rounds off hotplugging support by allowing you to add and remove
drives at any stage (before and after launch).
Rich.
2007 Aug 22
0
163 commits - autogen.sh configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_source.c libswfdec/Makefile.am libswfdec/swfdec_as_array.c
...| 17
vivified/ui/vivi_vivi_docklet.c | 150 +++++++
vivified/ui/vivi_vivi_docklet.h | 62 +++
128 files changed, 5498 insertions(+), 830 deletions(-)
New commits:
diff-tree 71cba217cf8baa498b14a09685aef92266e72dba (from 585fd834a0cc155ace203941eccb2b3e3beb38eb)
Author: Benjamin Otte <otte at gnome.org>
Date: Wed Aug 22 10:46:15 2007 +0200
rework init code, so it doesn't hit constant variables
diff --git a/libswfdec/swfdec_as_array.c b/libswfdec/swfdec_as_array.c
index 81ef701..864915d 100644
--- a/libswfdec/swfdec_as_a...
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
...e to launch an unprivileged guest
running the modified Linux kernel and unmodified userspace. This guest
is x86, UP only, runs in shadow translated mode, and has no direct access
to hardware. This simplifies the patchset to the minimum functionality
needed to support a paravirtualized guest. It's worth noting that
a fair amount of this patchset deals with paravirtualizing I/O, not
just CPU-only. The additional missing functionality is primarily about
full SMP support, optimizations such as direct writable page tables,
and the management interface. Those refinements will be posted later....
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
...e to launch an unprivileged guest
running the modified Linux kernel and unmodified userspace. This guest
is x86, UP only, runs in shadow translated mode, and has no direct access
to hardware. This simplifies the patchset to the minimum functionality
needed to support a paravirtualized guest. It's worth noting that
a fair amount of this patchset deals with paravirtualizing I/O, not
just CPU-only. The additional missing functionality is primarily about
full SMP support, optimizations such as direct writable page tables,
and the management interface. Those refinements will be posted later....