Searched defs:channel_count (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/media/base/android/
H A Dwebaudio_media_codec_info.h14 unsigned long channel_count; member in struct:media::WebAudioMediaCodecInfo
H A Daudio_decoder_job.cc30 int channel_count,
36 if (codec && codec->Start(audio_codec, sample_rate, channel_count, extra_data,
27 Create( const AudioCodec audio_codec, int sample_rate, int channel_count, const uint8* extra_data, size_t extra_data_size, jobject media_crypto, const base::Closure& request_data_cb) argument
H A Dwebaudio_media_codec_bridge.cc125 jint channel_count,
131 static_cast<unsigned long>(channel_count),
141 << " channel count = " << channel_count
122 InitializeDestination( JNIEnv* env, jobject , jint channel_count, jint sample_rate, jlong duration_microsec) argument
H A Dmedia_codec_bridge.cc457 int channel_count,
474 env, j_mime.obj(), sample_rate, channel_count));
455 Start(const AudioCodec& codec, int sample_rate, int channel_count, const uint8* extra_data, size_t extra_data_size, bool play_audio, jobject media_crypto) argument
/external/chromium_org/media/base/
H A Daudio_buffer.h33 // number of buffers must be equal to |channel_count|. |frame_count| is the
39 int channel_count,
48 int channel_count,
53 int channel_count,
84 int channel_count() const { return channel_count_; } function in class:media::AudioBuffer
110 // interleaved data, |channel_count| blocks for planar data), copies
115 int channel_count,
H A Daudio_buffer.cc15 int channel_count,
22 channel_count_(channel_count),
28 CHECK_GE(channel_count, 0);
29 CHECK_LE(channel_count, limits::kMaxChannels);
49 channel_count * block_size_per_channel, kChannelAlignment)));
50 channel_data_.reserve(channel_count);
53 for (int i = 0; i < channel_count; ++i) {
68 data_size *= channel_count;
82 int channel_count,
91 channel_count,
14 AudioBuffer(SampleFormat sample_format, int channel_count, int frame_count, bool create_buffer, const uint8* const* data, const base::TimeDelta timestamp, const base::TimeDelta duration) argument
80 CopyFrom( SampleFormat sample_format, int channel_count, int frame_count, const uint8* const* data, const base::TimeDelta timestamp, const base::TimeDelta duration) argument
100 CreateBuffer(SampleFormat sample_format, int channel_count, int frame_count) argument
114 CreateEmptyBuffer( int channel_count, int frame_count, const base::TimeDelta timestamp, const base::TimeDelta duration) argument
[all...]
H A Dchannel_mixer.cc32 int channel_count = ChannelLayoutToChannelCount(layout); local
33 DCHECK_GT(channel_count, 0);
39 if (channel_count > 1) {
/external/srec/audio/AudioIn/UNIX/src/
H A Daudioinwrapper.cpp65 int AudioSetInputFormat(int sample_rate, int channel_count) argument
71 numChannels = channel_count;
181 int AudioSetInputFormat(int sample_rate, int channel_count) argument
186 int AudioSetOutputFormat(int sample_rate, int channel_count) argument
/external/chromium_org/sandbox/win/src/
H A Dsharedmem_ipc_server.cc59 size_t channel_count = shared_size / (sizeof(ChannelControl) + channel_size); local
62 if (0 == channel_count) {
66 size_t base_start = (sizeof(ChannelControl)* channel_count) +
78 for (size_t ix = 0; ix != channel_count; ++ix) {
125 client_control_->channels_count = channel_count;
H A Dipc_unittest.cc23 size_t channel_count = local
26 *base_start = (sizeof(ChannelControl)* channel_count) +
30 client_control->channels_count = channel_count;
/external/chromium_org/skia/ext/
H A Drecursive_gaussian_convolution_unittest.cc22 int ComputeRowStride(int width, int channel_count, int stride_slack) { argument
23 return width * channel_count + stride_slack;
30 int channel_count,
33 width, channel_count, stride_slack);
40 signal_y * src_row_stride + signal_x * channel_count + channel_index;
49 int channel_count,
55 width, channel_count, stride_slack);
64 (*image)[y * src_row_stride + x * channel_count + channel_index] = value;
26 MakeImpulseImage(std::vector<unsigned char>* image, int width, int height, int channel_index, int channel_count, int stride_slack) argument
45 MakeBoxImage(std::vector<unsigned char>* image, int width, int height, int channel_index, int channel_count, int stride_slack, int box_width, int box_height, unsigned char value) argument
/external/chromium_org/media/filters/
H A Dopus_audio_decoder.cc433 const int channel_count = local
435 if (!config.IsValidConfig() || channel_count > kMaxVorbisChannels) {
438 << " channel count: " << channel_count
492 if (channel_count > kMaxChannelsWithDefaultLayout) {
494 channel_count,
501 channel_count,
551 output_buffer->get()->channel_count() *
/external/chromium_org/ppapi/c/private/
H A Dpp_content_decryptor.h347 int32_t channel_count; member in struct:PP_AudioDecoderConfig
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder.cc7166 void *pixels, uint32 row_count, uint32 channel_count,
7169 DCHECK_GT(channel_count, 0U);
7180 for (pixel_data_type* d = dst; d < end; d += channel_count) {
7256 uint32 channel_count = 0; local
7261 channel_count = 4;
7265 channel_count = 1;
7270 if (channel_count > 0) {
7274 pixels, height, channel_count, alpha_channel, unpadded_row_size,
7279 pixels, height, channel_count, alpha_channel, unpadded_row_size,
7284 pixels, height, channel_count, alpha_channe
7165 WriteAlphaData( void *pixels, uint32 row_count, uint32 channel_count, uint32 alpha_channel_index, uint32 unpadded_row_size, uint32 padded_row_size, pixel_data_type alpha_value) argument
[all...]

Completed in 773 milliseconds