search for: testenc_wb

Displaying 11 results from an estimated 11 matches for "testenc_wb".

Did you mean: testenc_uwb
2017 Feb 20
0
compiling with --enable-valgrind
...\ CFLAGS="-fPIC -I/opt/valgrind/include" \ PKG_CONFIG_PATH="/opt/ogg/lib/pkgconfig:/opt/speexdsp/lib/pkgconfig:/opt/valgrind/lib/pkgconfig" make V=1 -wj$(nproc) all But I get error: libtool: link: gcc -fPIC -I/opt/valgrind/include -fvisibility=hidden -O3 -msse -Wall -o .libs/testenc_wb testenc_wb.o -L/opt/valgrind/lib -L/opt/valgrind/lib/valgrind ./.libs/libspeex.so -lm -Wl,-rpath -Wl,/opt/speex/lib ./../libs./libslibspeex.so/:libspeex.so :undefined undefinedreference referenceto to` `VALGRIND_MAKE_READABLEVALGRIND_MAKE_READABLE'' ./.libs/libspeex.so: undefined refe...
2004 Sep 13
0
Compile flags for sampleenc sampledec.
...le to get the sampleenc and sampledec programs to work together. I think I do not have a compile swtich of flag set correctly. Backgound information: 1) 1.0.4 tar package 'make' worked and installed on a mandrake 10.0 linux 2) speexenc and speexdec appear to work fine. 3) testenc and testenc_wb work fine, though I notice that compile with gcc testenc.c -lspeex produces a different .bits file than the version made with make. Also, when compiled with gcc, the decoded output is garbled. This makes me think there is a flag I am missing. 4) test_wb output 16-bit PCM file seems about 1K short...
2004 Sep 15
0
Problems with sampleenc and sampledec
...get the sampleenc and sampledec programs to work together. I suspect the decode operation is failing, but I cannot find out why. Backgound information: 1) 1.0.4 tar package 'make' worked and installed on a mandrake 10.0 linux 2) speexenc and speexdec appear to work fine. 3) testenc and testenc_wb work fine, though I notice that compile with gcc testenc.c -lspeex produces a different .bits file than the version made with make. This makes me think there is a flag I am missing. 4) test_wb output 16-bit PCM file seems about 1K shorter than the original PCM file. Not sure if this is relevant....
2004 Aug 06
4
Framesize for UWB vs. WB encoding
...b.c from the speex-1.0 source distribution has a framesize of 640 hardcoded and makes use of this value exclusively. However, a mode query on the actual codec returns 320 as a framesize for this mode. int tmp; speex_mode_query(&speex_uwb_mode, SPEEX_MODE_FRAME_SIZE, &tmp); <p>testenc_wb.c from the speex-1.0 source distribution has a framesize of 320 hardcoded and makes use of this value exclusively. However, a mode query on the actual codec returns 160 as a framesize for this mode. int tmp; speex_mode_query(&speex_wb_mode, SPEEX_MODE_FRAME_SIZE, &tmp); How can thi...
2017 May 29
0
[PATCH] Add CMake build script
...upported) + +add_executable(testenc libspeex/testenc.c) +target_include_directories(testenc + PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>) +target_link_libraries(testenc + PRIVATE ${LIBM} + PUBLIC speex) +target_compile_definitions(testenc + PRIVATE -DHAVE_CONFIG_H) +add_executable(testenc_wb libspeex/testenc_wb.c) +target_include_directories(testenc_wb + PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>) +target_link_libraries(testenc_wb + PRIVATE ${LIBM} + PUBLIC speex) +target_compile_definitions(testenc_wb + PRIVATE -DHAVE_CONFIG_H) +add_executable(testenc_uwb libspeex/te...
2004 Aug 06
0
Framesize for UWB vs. WB encoding
...has a framesize > of 640 hardcoded and makes use of this value exclusively. > > However, a mode query on the actual codec returns 320 as a framesize > for this mode. > > int tmp; > speex_mode_query(&speex_uwb_mode, SPEEX_MODE_FRAME_SIZE, &tmp); > > > testenc_wb.c from the speex-1.0 source distribution has a framesize > of 320 hardcoded and makes use of this value exclusively. > > However, a mode query on the actual codec returns 160 as a framesize > for this mode. > > int tmp; > speex_mode_query(&speex_wb_mode, SPEEX_MODE_...
2006 Feb 10
2
About wideband encode
Hi, all. I have two questions about wideband encoding. >From "testenc_wb.c"... 1) tmp=8; speex_encoder_ctl(st, SPEEX_SET_QUALITY, &tmp); tmp=3; speex_encoder_ctl(st, SPEEX_SET_HIGH_MODE, &tmp); tmp=6; speex_encoder_ctl(st, SPEEX_SET_LOW_MODE, &tmp); How to set high_mode and low_mode, if quality is set to '9'? When I set qua...
2007 Sep 21
1
problem on Blackfin
Hello, i want to create a little program on BF533 EZ KIT Lite and VDSP++ the purpose of this program is to compress an input audio frame with speex then uncompress it to get the audio frame on output of the EZ KIT the input sample rate is 16KHZ and i can't get a lower sample rate with this kit When i use a 160 samples frame and narrow band mode--> i got a bad result in output There is
2009 Aug 25
0
Need some help about speex settings
...I use 44100 Hz the voice quality seems to be better comparing to 32 KHz. 2) When I use wideband mode with 16 KHz sampling rate bandwidth usage is greater comparing to 32 KHz, ultra-wideband. Why? Voice quality is worse when using 16KHz wideband comparing to ultra-wideband coding. 3) Speex samples testenc_wb and testenc_uwb gets SPEEX_GET_LOOKAHEAD parameter and skip appropriate number of samples. Should I do the same in VoIP ? What this value means and how is it used in Speex? 4) If sampling rate is 44100 and I use wideband (not ultra) coding bandwidth usage is very high (about 9 KB/sec). Is it norma...
2009 Dec 30
0
[PATCH] Link libspeexdsp with libfftw3 when needed
...in.h cb_search_s libspeex_la_LDFLAGS = -no-undefined -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@ +libspeexdsp_la_LIBADD = @FFT_LIBS@ libspeexdsp_la_LDFLAGS = -no-undefined -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@ noinst_PROGRAMS = testenc testenc_wb testenc_uwb testdenoise testecho testjitter @@ -55,8 +56,8 @@ testenc_wb_LDADD = libspeex.la $(VPSY_LIB) testenc_uwb_SOURCES = testenc_uwb.c testenc_uwb_LDADD = libspeex.la $(VPSY_LIB) testdenoise_SOURCES = testdenoise.c -testdenoise_LDADD = libspeexdsp.la @FFT_LIBS@ +testdenoise_LDADD = libspe...
2007 May 02
2
Re: Sending speex over a network
Hi All, In sampleenc.c and sampledec.c, if I change the FRAME_SIZE to any other value, I get very garbled speech. Can anyone tell me if I need to set something else if I would like to change the frame size ? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/speex-dev/attachments/20070502/35ea524b/attachment.htm