Displaying 2 results from an estimated 2 matches for "speex_bits_read_from_buff".
Did you mean:
  speex_bits_read_from_buffer
  
2006 Dec 09
1
New function for manipulating SpeexBits
It would be nice to have the following function added to the speex
bits...
void speex_bits_read_from_buffer(
    SpeexBits * const bits, 
    void      * const buff, 
    const int         buf_size)
{
    bits->bytes    = (char*)buff;
    bits->buf_size = buf_size;
    bits->nbBits   = buf_size << 3;
    bits->bytePtr  = 0;
    bits->bitPtr   = 0;
    bits->owner    = 0;
    bit...
2006 Dec 11
0
New function for manipulating SpeexBits
...rt
Cc: speex-dev@xiph.org
Subject: Re: [Speex-dev] New function for manipulating SpeexBits
How's that different from the current speex_bits_init_buffer()?
	Jean-Marc
Miles, Stewart a ?crit :
> It would be nice to have the following function added to the speex 
> bits...
> 
> void speex_bits_read_from_buffer(
>     SpeexBits * const bits, 
>     void      * const buff, 
>     const int         buf_size)
> {
>     bits->bytes    = (char*)buff;
>     bits->buf_size = buf_size;
>     bits->nbBits   = buf_size << 3;
>     bits->bytePtr  = 0;
>     bits->bit...