search for: speex_inband_stereo

Displaying 4 results from an estimated 4 matches for "speex_inband_stereo".

2004 Aug 06
2
API suggestions
...---------------------------- *** Unnecessary additional work for the developer on Stereo sources: It is unusual to require a different sequence of API calls depending on whether the signal is Mono or Stereo. This is especially evident in the decoder where you would register a callback for the SPEEX_INBAND_STEREO message. The need for explicitly calling the speex_en/decode_stereo() function in addition to speex_en/decode() is cumbersome. All these tasks could be done by the API automatically, once it knows that it is dealing with a Stereo source. A unified API not requiring separate code paths would be hel...
2004 Aug 06
0
API suggestions
> It is unusual to require a different sequence of API calls > depending on whether the signal is Mono or Stereo. > This is especially evident in the decoder where you would > register a callback for the SPEEX_INBAND_STEREO message. > The need for explicitly calling the speex_en/decode_stereo() > function in addition to speex_en/decode() is cumbersome. > All these tasks could be done by the API automatically, > once it knows that it is dealing with a Stereo source. I'll need to think about that one. S...
2008 Apr 04
0
speexdec 1.2.3
...ecoder initialization failed.\n"); free(header); return NULL; } speex_decoder_ctl(st, SPEEX_SET_ENH, &enh_enabled); speex_decoder_ctl(st, SPEEX_GET_FRAME_SIZE, frame_size); *granule_frame_size = *frame_size; if (!(*channels==1)) { callback.callback_id = SPEEX_INBAND_STEREO; callback.func = speex_std_stereo_request_handler; callback.data = stereo; speex_decoder_ctl(st, SPEEX_SET_HANDLER, &callback); } if (!*rate) *rate = header->rate; /* Adjust rate if --force-* options are used */ if (forceMode!=-1) { if (header-&gt...
2008 Apr 04
2
speexdec 1.2.3
On Fri, Apr 4, 2008 at 12:19 AM, Jean-Marc Valin <jean-marc.valin at usherbrooke.ca> wrote: > Jahn, Ray (R.) a ?crit : > > > Dear Speex codec community: > > > > I am working on conversion of voice files. I could not figure out how to use speexdec.exe 1.2.3 in piped mode in order to avoid the creation of the potentially large intermediate *.wav or *.pcm files. Any