Searched defs:channels (Results 1 - 25 of 288) sorted by path

1234567891011>>

/external/aac/libAACenc/src/
H A Daacenc_tns.cpp253 const INT channels,
264 tnsConfigTab = &tnsInfoTab[i].paramTab[(channels==1)?0:1];
363 input: bitrate, samplerate, number of channels,
373 INT channels,
385 if (channels <= 0)
450 const TNS_PARAMETER_TABULATED* pCfg = FDKaacEnc_GetTnsParam(bitRate, channels, ldSbrPresent);
951 /* if coefficients diverge too much between channels, do not synchronize */
251 FDKaacEnc_GetTnsParam( const INT bitRate, const INT channels, const INT sbrLd ) argument
371 FDKaacEnc_InitTnsConfiguration(INT bitRate, INT sampleRate, INT channels, INT blockType, INT granuleLength, INT ldSbrPresent, TNS_CONFIG *tC, PSY_CONFIGURATION *pC, INT active, INT useTnsPeak) argument
H A Dmetadata_compressor.cpp102 #define MAX_DRC_CHANNELS (8) /*!< Max number of audio input channels. */
174 UINT channels; /*!< Number of channels. */ member in struct:DRC_COMP
175 UINT fullChannels; /*!< Number of full range channels. */
500 /* Set number of channels and channel offsets. */
576 drcComp->channels = channelMapping.nChannels;
681 for (c = 0; c < (int)drcComp->channels; c++) {
703 FIXP_DBL x = FX_PCM2FX_DBL((FIXP_PCM)pSamples[i*drcComp->channels]) >> WEIGHTING_FILTER_SHIFT;
731 for (c = 0; c < (int)drcComp->channels; c++) {
746 accu += fPow2Div2((FIXP_PCM)pSamples[i*drcComp->channels])>>(granuleShif
[all...]
H A Dpsy_main.cpp440 AAC_ENCODER_ERROR FDKaacEnc_psyMain(INT channels, argument
453 INT ch; /* counts through channels */
495 for(ch = 0; ch < channels; ch++)
509 for(ch = 0; ch < channels; ch++)
538 channels,
547 for(ch = 0; ch < channels; ch++)
557 for(ch = 0; ch < channels; ch++)
561 for(ch = 0; ch < channels; ch++)
592 /* Transform and get mdctScaling for all channels and windows. */
593 for(ch = 0; ch < channels; c
[all...]
/external/aac/libPCMutils/src/
H A Dlimiter.cpp99 unsigned int channels, maxChannels; member in struct:TDLimiter
162 limiter->channels = maxChannels;
190 FDKmemset(limiter->delayBuf, 0, limiter->attack * limiter->channels * sizeof(FIXP_DBL) );
235 unsigned int channels = limiter->channels; local
278 /* get maximum absolute sample value of all channels, including the additional gain. */
280 for (j = 0; j < channels; j++) {
281 tmp2 = (FIXP_PCM)samples[i * channels + j];
349 for (j = 0; j < channels; j++) {
351 tmp = delayBuf[delayBufIdx * channels
[all...]
/external/bluetooth/bluedroid/stack/hcic/
H A Dhcicmds.c3078 UINT8 channels[10] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x7F}; local
3092 /* Just make sure that caller did not exceed 79 Bluetooth channels */
3099 channels[byte_offset] &= ~(1 << bit_offset);
3103 *pp++ = channels[i];
/external/chromium_org/chrome/browser/copresence/
H A Dchrome_whispernet_client_browsertest.cc36 buffer.resize(source->frames() * source->channels() * sizeof(float));
39 const int channels = source->channels(); local
40 for (int ch = 0; ch < channels; ++ch) {
41 for (int si = 0, di = ch; si < source->frames(); ++si, di += channels)
/external/chromium_org/chrome/browser/resources/whispernet_proxy/js/
H A Dwrapper.js116 channels: params.channels || 1,
/external/chromium_org/chrome/common/extensions/features/
H A Dchrome_channel_feature_filter.cc23 channels["trunk"] = chrome::VersionInfo::CHANNEL_UNKNOWN;
24 channels["canary"] = chrome::VersionInfo::CHANNEL_CANARY;
25 channels["dev"] = chrome::VersionInfo::CHANNEL_DEV;
26 channels["beta"] = chrome::VersionInfo::CHANNEL_BETA;
27 channels["stable"] = chrome::VersionInfo::CHANNEL_STABLE;
30 std::map<std::string, chrome::VersionInfo::Channel> channels; member in struct:extensions::__anon5651::Mappings
37 ChannelsMap channels = g_mappings.Get().channels; local
38 for (ChannelsMap::iterator i = channels.begin(); i != channels
48 ChannelsMap channels = g_mappings.Get().channels; local
[all...]
/external/chromium_org/chrome/installer/util/
H A Dinstallation_validator_unittest.cc442 const wchar_t* const* channels = &kChromeChannels[0]; local
444 channels = &kChromeFrameChannels[0]; // SxS GCF has its own channel names.
449 state->SetChannel(channels[channel], channel_modifiers);
/external/chromium_org/chrome/renderer/media/
H A Dcast_rtp_stream.h64 // Number of audio channels.
65 int channels; member in struct:CastRtpPayloadParams
/external/chromium_org/chrome/utility/cloud_print/
H A Dbitmap_image.cc18 data_(new uint8[size.GetArea() * channels()]) {
24 uint8 BitmapImage::channels() const { function in class:cloud_print::BitmapImage
31 return data_.get() + (point.y() * size_.width() + point.x()) * channels();
/external/chromium_org/components/copresence/mediums/audio/
H A Daudio_recorder.cc28 buffer->resize(source->frames() * source->channels() * sizeof(float));
31 const int channels = source->channels(); local
32 for (int ch = 0; ch < channels; ++ch) {
33 for (int si = 0, di = ch; si < source->frames(); ++si, di += channels)
118 media::AudioBus::Create(dest_params.channels(), total_buffer_frames_);
H A Daudio_recorder_unittest.cc93 void CreateRecorder(size_t channels, argument
100 channels,
145 expected_samples * sizeof(float) * params_.channels();
157 const int channels = params_.channels(); local
159 received_samples_.size() / sizeof(float) / params_.channels();
160 for (int ch = 0; ch < channels; ++ch) {
161 for (int si = 0, di = ch; si < frames; ++si, di += channels)
/external/chromium_org/components/copresence/test/
H A Daudio_test_support.cc20 int channels,
22 scoped_ptr<media::AudioBus> bus = media::AudioBus::Create(channels, samples);
23 for (int ch = 0; ch < channels; ++ch)
29 CreateRandomAudioRefCounted(int random_seed, int channels, int samples) { argument
31 media::AudioBusRefCounted::Create(channels, samples);
32 for (int ch = 0; ch < channels; ++ch)
19 CreateRandomAudio(int random_seed, int channels, int samples) argument
/external/chromium_org/components/variations/
H A Dstudy_filtering_unittest.cc34 const Study_Channel channels[] = { local
40 bool channel_added[arraysize(channels)] = { 0 };
44 // Check in the forwarded order. The loop cond is <= arraysize(channels)
46 for (size_t i = 0; i <= arraysize(channels); ++i) {
47 for (size_t j = 0; j < arraysize(channels); ++j) {
49 const bool result = internal::CheckStudyChannel(filter, channels[j]);
53 if (i < arraysize(channels)) {
54 filter.add_channel(channels[i]);
62 for (size_t i = 0; i <= arraysize(channels); ++i) {
63 for (size_t j = 0; j < arraysize(channels);
[all...]
/external/chromium_org/content/browser/speech/
H A Dspeech_recognizer_impl_unittest.cc71 const int channels = local
74 const int frames = audio_packet_length_bytes / channels / bytes_per_sample_;
75 audio_bus_ = media::AudioBus::Create(channels, frames);
/external/chromium_org/content/child/npapi/
H A Dnp_channel_base.cc143 std::vector<scoped_refptr<NPChannelBase> > channels; local
147 channels.push_back(iter->second);
150 for (size_t i = 0; i < channels.size(); ++i)
151 channels[i]->CleanUp();
153 // This will clean up channels added to the map for which subsequent
/external/chromium_org/content/child/service_worker/
H A Dweb_service_worker_impl.cc85 WebMessagePortChannelArray* channels) {
89 WebMessagePortChannelImpl::ExtractMessagePortIDs(channels)));
84 postMessage(const WebString& message, WebMessagePortChannelArray* channels) argument
/external/chromium_org/content/child/
H A Dwebmessageportchannel_impl.cc81 WebMessagePortChannelArray* channels) {
83 if (channels) {
84 message_port_ids.resize(channels->size());
86 for (size_t i = 0; i < channels->size(); ++i) {
88 static_cast<WebMessagePortChannelImpl*>((*channels)[i]);
96 delete channels;
117 WebMessagePortChannelArray* channels) {
123 static_cast<base::string16>(message), channels));
125 PostMessage(message, channels);
131 WebMessagePortChannelArray* channels) {
80 ExtractMessagePortIDs( WebMessagePortChannelArray* channels) argument
115 postMessage( const WebString& message, WebMessagePortChannelArray* channels) argument
129 PostMessage( const base::string16& message, WebMessagePortChannelArray* channels) argument
137 tryGetMessage( WebString* message, WebMessagePortChannelArray& channels) argument
[all...]
/external/chromium_org/content/common/media/
H A Dmedia_param_traits.cc26 m->WriteInt(p.channels());
34 frames_per_buffer, channels, effects; local
41 !m->ReadInt(iter, &channels) ||
46 static_cast<ChannelLayout>(channel_layout), channels,
/external/chromium_org/content/renderer/media/
H A Daudio_message_filter.cc225 int channels = audio_hardware_config_->GetOutputChannels(); local
231 channels,
H A Dmedia_stream_audio_processor.cc88 MediaStreamAudioBus(int channels, int frames) argument
89 : bus_(media::AudioBus::Create(channels, frames)),
90 channel_ptrs_(new float*[channels]) {
102 for (int i = 0; i < bus_->channels(); ++i) {
119 MediaStreamAudioFifo(int channels, int source_frames, argument
122 destination_(new MediaStreamAudioBus(channels, destination_frames)),
129 fifo_.reset(new media::AudioFifo(channels, fifo_frames));
138 DCHECK_EQ(source->channels(), destination_->bus()->channels());
252 // Swap channels befor
[all...]
H A Dmedia_stream_audio_sink_owner.cc20 const std::vector<int>& channels,
16 OnData(const int16* audio_data, int sample_rate, int number_of_channels, int number_of_frames, const std::vector<int>& channels, int audio_delay_milliseconds, int current_volume, bool need_audio_processing, bool key_pressed) argument
H A Dpeer_connection_audio_sink_owner.cc20 const std::vector<int>& channels,
31 channels,
16 OnData(const int16* audio_data, int sample_rate, int number_of_channels, int number_of_frames, const std::vector<int>& channels, int audio_delay_milliseconds, int current_volume, bool need_audio_processing, bool key_pressed) argument
H A Dwebrtc_audio_device_impl.cc60 const std::vector<int>& channels,
68 // Return immediately when not recording or |channels| is empty.
69 // See crbug.com/274017: renderer crash dereferencing invalid channels[0].
70 if (!recording_ || channels.empty())
100 &channels[0],
101 channels.size(),
131 render_buffer_.resize(audio_bus->frames() * audio_bus->channels());
143 audio_bus->channels() * frames_per_10_ms * bytes_per_sample;
164 audio_bus->channels(),
175 audio_bus->channels(),
56 OnData(const int16* audio_data, int sample_rate, int number_of_channels, int number_of_frames, const std::vector<int>& channels, int audio_delay_milliseconds, int current_volume, bool need_audio_processing, bool key_pressed) argument
[all...]

Completed in 558 milliseconds

1234567891011>>