HomeSort by relevance Sort by last modified time
    Searched full:nchannels (Results 26 - 50 of 153) sorted by null

12 3 4 5 6 7

  /frameworks/base/media/libeffects/testlibs/
AudioFormatAdapter.h 54 // nChannels Number of input and output channels. The adapter does not do
59 void configure(T & processor, int nChannels, uint8_t pcmFormat,
62 mNumChannels = nChannels;
65 mMaxSamplesPerCall = bufSize / nChannels;
AudioEqualizer.h 69 // nChannels Number of input/output channels (interlaced).
80 int nChannels,
87 // nChannels Number of input/output channels (interlaced).
89 void configure(int nChannels, int sampleRate);
180 // frameCount * nChannels interlaced samples. Processing can be done
231 // nChannels Number of input/output channels (interlaced).
240 AudioEqualizer(void * pMem, int nBands, int nChannels, int sampleRate,
  /frameworks/base/media/libstagefright/codecs/aacenc/inc/
adj_thr.h 50 const Word16 nChannels,
block_switch.h 59 const Word32 bitRate, const Word16 nChannels);
psy_main.h 57 Word16 psyMain(Word16 nChannels, /*!< total number of channels */
qc_data.h 128 Word16 nChannels;
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
line_pe.c 44 const Word16 nChannels,
50 for(ch=0; ch<nChannels; ch++) {
73 const Word16 nChannels)
84 for(ch=0; ch<nChannels; ch++) {
block_switch.c 76 const Word32 bitRate, const Word16 nChannels)
80 if ((sub(nChannels,1)==0 && L_sub(bitRate, 24000) > 0) ||
81 (sub(nChannels,1)>0 && bitRate > (nChannels * 16000))) {
374 const Word16 nChannels)
380 if (nChannels == 1) { /* Mono */
  /external/qemu/audio/
winaudio.c 175 format.nChannels = as->nchannels;
177 format.nAvgBytesPerSec = as->freq*as->nchannels;
192 format.nAvgBytesPerSec = (format.nSamplesPerSec & format.nChannels) << shift;
193 format.nBlockAlign = format.nChannels << shift;
421 format.nChannels = as->nchannels;
423 format.nAvgBytesPerSec = as->freq*as->nchannels;
436 format.nAvgBytesPerSec = (format.nSamplesPerSec * format.nChannels) << shift;
437 format.nBlockAlign = format.nChannels << shift;
    [all...]
audio.h 50 int nchannels; member in struct:audsettings
169 int bits, int nchannels);
audio.c 170 .nchannels = 2,
182 .nchannels = 2,
613 dolog ("frequency=%d nchannels=%d fmt=", as->freq, as->nchannels);
658 invalid = as->nchannels != 1 && as->nchannels != 2;
701 && info->nchannels == as->nchannels
735 info->nchannels = as->nchannels;
    [all...]
audio_template.h 162 [sw->info.nchannels == 2]
293 [hw->info.nchannels == 2]
422 ldebug ("open %s, freq %d, nchannels %d, fmt %d\n",
423 name, as->freq, as->nchannels, as->fmt);
452 SW_NAME (sw), sw->info.freq, sw->info.bits, sw->info.nchannels);
457 as->nchannels);
  /external/sonivox/arm-fm-22k/host_src/
eas_wave.h 40 EAS_U16 nChannels;
66 WAVE_FILE *WaveFileCreate (const char *filename, EAS_I32 nChannels, EAS_I32 nSamplesPerSec, EAS_I32 wBitsPerSample);
  /external/sonivox/arm-hybrid-22k/host_src/
eas_wave.h 40 EAS_U16 nChannels;
66 WAVE_FILE *WaveFileCreate (const char *filename, EAS_I32 nChannels, EAS_I32 nSamplesPerSec, EAS_I32 wBitsPerSample);
  /external/sonivox/arm-wt-22k/host_src/
eas_wave.h 40 EAS_U16 nChannels;
66 WAVE_FILE *WaveFileCreate (const char *filename, EAS_I32 nChannels, EAS_I32 nSamplesPerSec, EAS_I32 wBitsPerSample);
  /external/bluetooth/bluez/sbc/
sbc_primitives_neon.c 550 int nsamples, int nchannels, int big_endian)
575 if (nchannels > 1) {
593 if ((nchannels > 1) && ((uintptr_t)pcm & 1)) {
627 } else if (nchannels > 1) {
688 int nsamples, int nchannels, int big_endian)
721 if (nchannels > 1) {
743 if ((nchannels > 1) && ((uintptr_t)pcm & 1)) {
781 } else if (nchannels > 1) {
850 int nsamples, int nchannels)
853 position, pcm, X, nsamples, nchannels, 1)
    [all...]
  /frameworks/base/media/libstagefright/codecs/common/include/
voAAC.h 47 short nChannels; /*! number of channels on input (1,2) */
  /frameworks/base/media/libstagefright/codecs/g711/dec/
SoftG711.cpp 124 pcmParams->nChannels = mNumChannels;
147 if (pcmParams->nChannels < 1 || pcmParams->nChannels > 2) {
151 mNumChannels = pcmParams->nChannels;
  /hardware/qcom/media/mm-core/omxcore/inc/
QOMX_AudioExtensions.h 81 * nChannels : Number of channels
93 OMX_U32 nChannels;
112 * nChannels : Number of channels
129 OMX_U16 nChannels;
  /external/opencv/otherlibs/highgui/
image.cpp 120 color = img->nChannels > 1;
123 (!color ? 1 : img->nChannels > 1 ? img->nChannels : 3)*8,
  /external/opencv/cxcore/include/
cxcore.hpp 90 image->depth != depth || image->nChannels != channels )
154 int channels() const { return image ? image->nChannels : 0; }
155 int pix_size() const { return image ? ((image->depth & 255)>>3)*image->nChannels : 0; }
173 image->roi->xOffset*((image->depth & 255)>>3)*image->nChannels);
187 image->roi->xOffset*((image->depth & 255)>>3)*image->nChannels);
cvwimage.h 198 int Channels() const {return image_->nChannels; }
267 assert(!img || img->nChannels == Channels());
310 WImageBuffer(int width, int height, int nchannels) : WImage<T>(0) {
311 Allocate(width, height, nchannels);
320 void Allocate(int width, int height, int nchannels);
531 inline void WImageBuffer<T>::Allocate(int width, int height, int nchannels)
534 WImage<T>::Height() != height || WImage<T>::Channels() != nchannels) {
537 WImage<T>::Depth(), nchannels);
565 WImageView<T>::WImageView(T* data, int width, int height, int nchannels, int width_step)
568 cvInitImageHeader(&header_, cvSize(width, height), WImage<T>::Depth(), nchannels);
    [all...]
  /external/opencv/cvaux/src/
cvbgfg_acmmm2003.cpp 93 if (first_frame->nChannels != 3)
229 || prev_frame->nChannels != 3
230 || curr_frame->nChannels != 3
231 || change_mask->nChannels != 1
246 for (b=0 ; b<prev_frame->nChannels ; b++) {
257 for (x=0 ; x<curr_frame->width ; x++, rowStart1+=curr_frame->nChannels, rowStart2+=prev_frame->nChannels) {
299 for (x = 0; x < curr_frame->width; x++, rowStart1+=curr_frame->nChannels,
300 rowStart2+=prev_frame->nChannels, rowStart3+=change_mask->nChannels) {
    [all...]
  /external/qemu/android/
audio-test.c 58 as.nchannels = 1;
  /frameworks/base/media/libstagefright/codecs/aacdec/
SoftAAC.cpp 147 aacParams->nChannels = 1;
151 aacParams->nChannels = mConfig->encodedChannels;
177 pcmParams->nChannels = 1;
180 pcmParams->nChannels = mConfig->desiredChannels;

Completed in 649 milliseconds

12 3 4 5 6 7