search for: outq

Displaying 6 results from an estimated 6 matches for "outq".

Did you mean: out
2005 Apr 26
8
HTB Weird Shaping Question(Bug?). Please Help!
...;'ve tried top, it doesn''t LOOK LIKE a CPU load problem. Script: #################################### #!/bin/sh #ADDRs ROUTER=192.168.1.1 LEO_LAP_WL=192.168.1.31 LEO_LAP=192.168.1.32 LEO_DES=192.168.1.33 PONY_DES=192.168.1.34 ERIC_DES=192.168.1.35 ERIC_LAP=192.168.1.36 # Interfaces OUTQ=imq0 INQ=imq1 # Speed Rates ROOT_OUTRATE=200kbit ROOT_INRATE=1310kbit CLASS_OUTRATE=200kbit CLASS_INRATE=1310kbit SUBCLASS_OUTRATE=180kbit SUBCLASS_INRATE=1310kbit # Init Interfaces ip link set ${INQ} up ip link set ${OUTQ} up iptables -t mangle -F iptables -t mangle -A POSTROUTING -o ppp0 -j I...
2015 Jan 29
2
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...IX, and should never be used by user code. It's unlikely to cause issues with these long type names, but I have certainly seen it cause issues elsewhere (and using the style encourages others to do it). > + SAVE_STACK; > + int N2 = st->nfft >> 1; > + float32x4_t inq, outq; > + float32x2_t scale; > + float *in = (float *)fin; You're dropping the const qualifier for no reason. Also, vld1q_f32() takes a const float32_t *, NOT a float *, and they are not compatible on all compiler versions. > + float *out; > + int i; > + ALLOC(temp, st-&...
2015 Jan 29
0
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...used by user code. It's unlikely to cause issues with these > long type names, but I have certainly seen it cause issues elsewhere (and > using the style encourages others to do it). > >> + SAVE_STACK; >> + int N2 = st->nfft >> 1; >> + float32x4_t inq, outq; >> + float32x2_t scale; >> + float *in = (float *)fin; > > > You're dropping the const qualifier for no reason. Also, vld1q_f32() takes a > const float32_t *, NOT a float *, and they are not compatible on all > compiler versions. > >> + float *out; &gt...
2006 Feb 10
0
Multiple frames in packet
...p;obj->bits); speex_encode_int(obj->speex_state,(short*)input,&obj->bits); m=ms_message_new(speex_bits_nbytes(&obj->bits)); //speex_bits_insert_terminator(&obj->bits); m->size=speex_bits_write(&obj->bits,m->data,m->size); ms_queue_put(outq,m); } And my decode function void ms_speex_dec_process(MSSpeexDec *obj) { .... m=ms_queue_get(inq); g_return_if_fail(m!=NULL); speex_bits_reset(&obj->bits); ms_fifo_get_write_ptr(outf,gran,(void**)&output); g_return_if_fail(output!=NULL); if (m->data!=NU...
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
...kiss_fft_cpx *fin, + kiss_fft_cpx *fout) +{ + ne10_fft_cfg_float32_t cfg = (ne10_fft_cfg_float32_t)st->priv; + VARDECL(ne10_fft_cpx_float32_t, temp); + VARDECL(ne10_fft_cpx_float32_t, tempin); + SAVE_STACK; + int N2 = st->nfft >> 1; + float32x4_t inq, outq; + float32x2_t scale; + float *in = (float *)fin; + float *out; + int i; + ALLOC(temp, st->nfft, ne10_fft_cpx_float32_t); + ALLOC(tempin, st->nfft, ne10_fft_cpx_float32_t); + + out = (float *)tempin; + scale = vld1_dup_f32(&st->scale); + for (i = 0; i < N2; i++) {...