HomeSort by relevance Sort by last modified time
    Searched defs:nb_channels (Results 1 - 3 of 3) sorted by null

  /external/speex/include/speex/
speex_header.h 67 spx_int32_t nb_channels; /**< Number of channels encoded */ member in struct:SpeexHeader
78 void speex_init_header(SpeexHeader *header, int rate, int nb_channels, const struct SpeexMode *m);
  /external/qemu/audio/
fmodaudio.c 48 int nb_channels; member in struct:__anon10548
54 .nb_channels = 2,
584 status = FSOUND_Init (conf.freq, conf.nb_channels, 0);
649 .valp = &conf.nb_channels,
  /external/speex/libspeex/
resample.c 122 spx_uint32_t nb_channels; member in struct:SpeexResamplerState_
651 st->mem = (spx_word16_t*)speex_alloc(st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
652 for (i=0;i<st->nb_channels*st->mem_alloc_size;i++)
659 st->mem = (spx_word16_t*)speex_realloc(st->mem, st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
660 for (i=0;i<st->nb_channels*st->mem_alloc_size;i++)
672 st->mem = (spx_word16_t*)speex_realloc(st->mem, st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
674 for (i=st->nb_channels-1;i>=0;i--)
713 for (i=0;i<st->nb_channels;i++)
728 EXPORT SpeexResamplerState *speex_resampler_init(spx_uint32_t nb_channels, spx_uint32_t in_rate, spx_uint32_t out_rate, int quality, int *err)
730 return speex_resampler_init_frac(nb_channels, in_rate, out_rate, in_rate, out_rate, quality, err)
    [all...]

Completed in 56 milliseconds