similar to: Implications of reducing MAX_PERIOD

Displaying 20 results from an estimated 700 matches similar to: "Implications of reducing MAX_PERIOD"

2010 Jan 12
1
Seamless Looping
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> </head> <body bgcolor="#ffffff" text="#000000"> Hi,<br> <br> I''ve been working on seamless looping of our CELT encoded sound banks.<br>
2010 Feb 12
2
Optimisation Help
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> </head> <body bgcolor="#ffffff" text="#000000"> Hi,<br> <br> I have been looking into optimising the CELT decoder for speed to make it acceptable for
2009 Nov 06
0
FMOD released with CELT support.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000000"> Hi Guys,<br> <br> Just thought I might let you guys know that the latest development version of the FMOD API (4.29.01) has been released with support for CELT as a bank format. <br> <br>
2009 Jul 22
2
Allocating all memory up front
Hi guys, I'm currently working on a CELT implementation for FMOD, and one of the things we want to do is have all memory required allocated beforehand. This is before we have any information about what sounds will be played. We would like to create all of our CELTDecode instances up front. Because celt_mode_create() requires a sample rate and number of channels passed in, this
2011 Mar 22
1
MAX_PERIOD
Hi, In order to fit the decoder in memory in our embedded architecture we set the MAX_PERIOD #define equal to the frame size. This doesn't affect the code bit accuracy in normal decoding. The #define it's used celt_decode_lost function though. Is it possible to get celt_decode_lost to work with a value different from the default? Thanks Riccardo Riccardo Micci Senior DSP Engineer,
2013 May 23
2
ASM runtime detection and optimizations
I wrote a proof of concept regarding the cpu capabilities runtime detection and choice of optimized function. I follow design which had been discussed on IRC. Also, i notice a little drawback: we must propagate the arch index through functions which don't have codec state as argument. However, if it's look good, i will continue to implement it. Best regards, -- Aur?lien Zanelli
2010 Dec 10
3
Cross Platform Audio Library
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi all, I was wondering if anyone had any advice on an audio library that is better suited to be paired with Celt in terms of latency. I'm working on an application that I would like to have running on both windows/Linux systems. I started by using the OpenAL library but I have run into an issue when feeding OpenAL small mono sample sizes that
2011 Aug 05
1
CELT/Opus Status Update
Hi everyone, I've made several posts recently about CELT being "replaced" by the Opus codec ( http://opus-codec.org/ ) and I thought it was time to give an update on what's going on. As many of you know, I've been involved at the IETF on this new Opus codec, which essentially merge (a modified version of) Skype's SILK codec with CELT. This is more than just two codecs
2002 Apr 25
0
FW: [mad-dev] Vorbis article
I thought you guys would like to check rob leslies article on integer vorbis. He is the author of the integer mp3 decoder 'MAD'. Brett Paterson CEO / Lead Programmer. Firelight Technologies Pty Ltd. FMOD SoundSystem http://www.fmod.org > -----Original Message----- > From: mad-dev-admin@lists.mars.org [mailto:mad-dev-admin@lists.mars.org] > On Behalf Of Rob Leslie > Sent:
2016 Jun 17
5
ARM NEON optimization -- celt_fir()
Hi all, This is Linfeng Zhang from Google. I'll work on ARM NEON optimization in the next few months. I'm submitting 2 patches in the following couple of emails, which have the new created celt_fir_neon(). I revised celt_fir_c() to not pass in argument "mem" in Patch 1. If there are concerns to this change, please let me know. Many thanks to your comments. Linfeng Zhang
2009 Jul 24
1
STATIC_MODES, fft and prob members
Hi Guys, I've just been looking into STATIC_MODES. My plan is to generate and store the modes as part of our sound banks when they are encoded. I have noticed that even with STATIC_MODES turned on, celt_mode_create still allocs and generates the fft and prob members (via pitch_state_alloc and quant_prob_alloc respectively). I also notice that in dump_modes.c, these two members are just
2009 Jan 14
0
[PATCH] Pitch now quantised at the band level, got rid of all the VQ code.
--- libcelt/Makefile.am | 6 +- libcelt/bands.c | 26 +++++++++- libcelt/bands.h | 2 +- libcelt/celt.c | 23 +++----- libcelt/pgain_table.h | 133 ------------------------------------------------- libcelt/quant_pitch.c | 117 ------------------------------------------- libcelt/quant_pitch.h | 44 ---------------- 7 files changed, 37 insertions(+), 314
2010 Jan 27
1
Some additions to CELT_RESET_STATE for 0.7.1
Hi Jean-Marc, As the self-appointed keeper of CELT_RESET_STATE (since I may be the only one actually using it) I've been kind of lax lately and have only now tried to reconcile it with the state structures in the 0.7.1 drop. I think (and feel free to contradict me here) that the following lines should be added to CELT_RESET_STATE in celt_encoder_ctl: st->fold_decision = 1;
2009 Jan 14
0
[PATCH] Moved the application of the pitch gain to (un)quant_bands(). This doesn't change anything to the codec, but will make the next changes easier.
--- libcelt/bands.c | 43 ++++++++++++++++++++++++------------------- libcelt/bands.h | 6 ++---- libcelt/celt.c | 6 ++---- 3 files changed, 28 insertions(+), 27 deletions(-) diff --git a/libcelt/bands.c b/libcelt/bands.c index d0c3498..315cce8 100644 --- a/libcelt/bands.c +++ b/libcelt/bands.c @@ -247,23 +247,6 @@ void compute_pitch_gain(const CELTMode *m, const celt_norm_t *X, const
2001 Jun 30
2
libao: src/plugins/arts/Makefile.am
Clobbering CFLAGS is not nice. --- src/plugins/arts/Makefile.am.orig Sat Dec 30 06:03:25 2000 +++ src/plugins/arts/Makefile.am Wed Apr 11 00:40:35 2001 @@ -16,13 +17,12 @@ artssources = endif -INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/include +INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/include @ARTS_CFLAGS@ libdir = $(plugindir) lib_LTLIBRARIES = $(artsltlibs) libarts_la_LDFLAGS =
2001 Nov 30
1
Ogg Drop?
Hi, I asked this before, but it seems it hasn''t been updated. Who is responsible for this and what are the problems? The changes are in CVS (IIRC), but not in the current EXE available for downloading. Olaf van der Spek Almere, Holland Olaf@XCC.TMFWeb.NL http://xccu.sourceforge.net/ http://xcc.tiberian.com/ --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project
2015 Mar 04
0
[RFC PATCH v1] armv7(float): Optimize decode usecase using NE10 library
Optimize opus decode (float only) use case using ARM NE10. Mainly effects opus_ifft and ctl_mdct_backward and related functions. Work based on previous Encode optimization using ARM NE10 library. TBD: Add commit id of upstream Encode NE10 optimization patch so that users have reference of how to enable this optimization Signed-off-by: Viswanath Puttagunta <viswanath.puttagunta at
2015 Apr 28
0
[RFC PATCH v1 2/8] armv7(float): Optimize decode usecase using NE10 library
Optimize opus decode (float only) use case using ARM NE10. Mainly effects opus_ifft and ctl_mdct_backward and related functions. Work based on previous Encode optimization using ARM NE10 library. TBD: Add commit id of upstream Encode NE10 optimization patch so that users have reference of how to enable this optimization Signed-off-by: Viswanath Puttagunta <viswanath.puttagunta at
2002 Mar 05
1
ogg vorbis on the pocket pc
Hi, i'm not too familiar with how the ogg vorbis community works, so i hope this is within the topic of the list, but i didnt really want to leave this thing i've did out in the dark either. :) i've just ported libvorbis, libogg, and vorbisfile stuff to the pocket pc a while ago, it was pretty straight forward (just add a few more #ifdefs around the ftoi function and some others) and
2009 Aug 23
1
(no subject)
Hi everyone, I'll be attending EUSIPCO 2009 in Glasgow this week (and presenting http://people.xiph.org/~jm/papers/celt_eusipco2009.pdf ). In case anyone on this list is attending the conference (or happens to live there) and would like to meet me, just let me know. Cheers, Jean-Marc