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

  /external/chromium_org/media/base/
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_bus.h 39 // ownership of |channel_data| to AudioBus; i.e., |channel_data| must outlive
42 int frames, const std::vector<float*>& channel_data);
113 AudioBus(int frames, const std::vector<float*>& channel_data);
audio_buffer.h 104 const std::vector<uint8*>& channel_data() const { return channel_data_; } function in class:media::AudioBuffer
audio_buffer_unittest.cc 14 static void VerifyResult(float* channel_data,
21 ASSERT_EQ(channel_data[i], start);
audio_buffer_queue_unittest.cc 19 static void VerifyResult(float* channel_data,
26 ASSERT_EQ(start, channel_data[i]);
  /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-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/media/filters/
ffmpeg_audio_decoder.cc 203 int number_of_planes = buffer->channel_data().size();
207 frame->data[i] = buffer->channel_data()[i];
215 frame->extended_data[i] = frame->data[i] = buffer->channel_data()[i];
217 frame->extended_data[i] = buffer->channel_data()[i];
audio_renderer_algorithm_unittest.cc 248 const std::vector<uint8*>& channel_data = input->channel_data(); local
252 reinterpret_cast<float*>(channel_data[0]));
255 reinterpret_cast<float*>(channel_data[1]));
287 ASSERT_NEAR(reinterpret_cast<float*>(channel_data[m])[k],
opus_audio_decoder.cc 556 output_buffer->get()->channel_data()[0]);

Completed in 203 milliseconds