HomeSort by relevance Sort by last modified time
    Searched refs:channel_data (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/media/base/
audio_bus.h 40 // ownership of |channel_data| to AudioBus; i.e., |channel_data| must outlive
43 int frames, const std::vector<float*>& channel_data);
117 AudioBus(int frames, const std::vector<float*>& channel_data);
audio_bus.cc 50 float* channel_data = dest->channel(ch); local
54 channel_data[i] = v * (v < 0 ? -min : max);
70 const float* channel_data = source->channel(ch); local
73 const float v = channel_data[i];
128 AudioBus::AudioBus(int frames, const std::vector<float*>& channel_data)
129 : channel_data_(channel_data),
165 int frames, const std::vector<float*>& channel_data) {
166 return scoped_ptr<AudioBus>(new AudioBus(frames, channel_data));
audio_buffer.h 111 const std::vector<uint8*>& channel_data() const { return channel_data_; } function in class:media::AudioBuffer
audio_buffer_converter.cc 217 reinterpret_cast<float*>(output_buffer->channel_data()[ch]) +
test_helpers.cc 182 reinterpret_cast<T*>(output->channel_data()[is_planar ? ch : 0]);
audio_splicer_unittest.cc 52 return reinterpret_cast<const float*>(buffer->channel_data()[0])[0];
140 &input->channel_data()[0],
audio_splicer.cc 42 ch, reinterpret_cast<float*>(buffer->channel_data()[ch]));
audio_buffer_unittest.cc 172 &original_buffer->channel_data()[0],
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
mux.py     [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
mux.py     [all...]
  /external/chromium_org/media/filters/
ffmpeg_audio_decoder.cc 102 int number_of_planes = buffer->channel_data().size();
106 frame->data[i] = buffer->channel_data()[i];
114 frame->extended_data[i] = frame->data[i] = buffer->channel_data()[i];
116 frame->extended_data[i] = buffer->channel_data()[i];
audio_renderer_algorithm_unittest.cc 264 const std::vector<uint8*>& channel_data = input->channel_data(); local
268 reinterpret_cast<float*>(channel_data[0]));
271 reinterpret_cast<float*>(channel_data[1]));
303 ASSERT_NEAR(reinterpret_cast<float*>(channel_data[m])[k],
opus_audio_decoder.cc 456 output_buffer->get()->channel_data()[0]);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_mux.py 117 channel_data = self._channel_data[channel_id]
121 channel_data.pending_fragments.append(inner_payload)
123 if channel_data.current_opcode is None:
126 channel_data.current_opcode = inner_opcode
133 message = ''.join(channel_data.pending_fragments)
134 channel_data.pending_fragments = []
136 if (channel_data.current_opcode == common.OPCODE_TEXT or
137 channel_data.current_opcode == common.OPCODE_BINARY):
138 channel_data.messages.append(message)
140 channel_data.control_messages.append
    [all...]
  /external/chromium_org/components/copresence/mediums/audio/
audio_recorder_unittest.cc 23 const std::vector<float*> channel_data,
27 for (size_t i = 0; i < channel_data.size(); ++i)
28 buffer_->SetChannelData(i, channel_data[i]);

Completed in 251 milliseconds