Searched refs:channel_data (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/media/base/
H A Daudio_bus.cc50 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) argument
129 : channel_data_(channel_data),
165 int frames, const std::vector<float*>& channel_data) {
166 return scoped_ptr<AudioBus>(new AudioBus(frames, channel_data));
164 WrapVector( int frames, const std::vector<float*>& channel_data) argument
H A Daudio_bus.h39 // ownership of |channel_data| to AudioBus; i.e., |channel_data| must outlive
42 int frames, const std::vector<float*>& channel_data);
116 AudioBus(int frames, const std::vector<float*>& channel_data);
H A Daudio_buffer.h111 const std::vector<uint8*>& channel_data() const { return channel_data_; } function in class:media::AudioBuffer
H A Daudio_buffer_converter.cc218 reinterpret_cast<float*>(output_buffer->channel_data()[ch]) +
H A Dtest_helpers.cc182 reinterpret_cast<T*>(output->channel_data()[is_planar ? ch : 0]);
H A Daudio_splicer_unittest.cc52 return reinterpret_cast<const float*>(buffer->channel_data()[0])[0];
140 &input->channel_data()[0],
H A Daudio_splicer.cc42 ch, reinterpret_cast<float*>(buffer->channel_data()[ch]));
H A Daudio_buffer_unittest.cc172 &original_buffer->channel_data()[0],
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dmux.py1191 channel_data = self._logical_channels[channel_id]
1192 channel_data.request.connection.notify_write_done()
1294 channel_data = _LogicalChannelData(logical_request, worker)
1295 self._logical_channels[logical_request.channel_id] = channel_data
1319 channel_data = self._logical_channels[block.channel_id]
1320 channel_data.request.ws_stream.replenish_send_quota(
1332 channel_data = self._logical_channels[block.channel_id]
1334 channel_data.request.connection.set_read_state(
1338 channel_data.request.connection.set_read_state(
1369 channel_data
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dmux.py1539 channel_data = self._logical_channels[channel_id]
1540 channel_data.request.connection.on_write_data_done()
1654 channel_data = _LogicalChannelData(logical_request, worker)
1655 self._logical_channels[logical_request.channel_id] = channel_data
1685 channel_data = self._logical_channels[block.channel_id]
1686 channel_data.request.ws_stream.replenish_send_quota(
1699 channel_data = self._logical_channels[block.channel_id]
1700 channel_data.drop_code = _DROP_CODE_ACKNOWLEDGED
1703 channel_data.request.connection.set_read_state(
1705 channel_data
[all...]
/external/chromium_org/media/filters/
H A Dffmpeg_audio_decoder.cc102 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];
H A Daudio_renderer_algorithm_unittest.cc262 const std::vector<uint8*>& channel_data = input->channel_data(); local
266 reinterpret_cast<float*>(channel_data[0]));
269 reinterpret_cast<float*>(channel_data[1]));
301 ASSERT_NEAR(reinterpret_cast<float*>(channel_data[m])[k],
H A Dopus_audio_decoder.cc455 output_buffer->get()->channel_data()[0]);
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_mux.py117 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
[all...]

Completed in 324 milliseconds