Searched defs:frame_count (Results 26 - 50 of 80) sorted by relevance

1234

/external/chromium_org/media/base/android/
H A Dwebaudio_media_codec_bridge.cc170 int frame_count = buf_size / sizeof(*data) / 2; local
172 decoded_data.resize(frame_count);
173 for (int k = 0; k < frame_count; ++k) {
179 count = frame_count * sizeof(*data);
/external/chromium_org/media/base/
H A Daudio_buffer.cc24 int frame_count,
32 adjusted_frame_count_(frame_count),
34 end_of_stream_(!create_buffer && data == NULL && frame_count == 0),
41 CHECK_GE(frame_count, 0);
47 int data_size = frame_count * bytes_per_channel;
99 int frame_count,
103 CHECK_GT(frame_count, 0); // Otherwise looks like an EOF buffer.
109 frame_count,
121 int frame_count) {
122 CHECK_GT(frame_count,
20 AudioBuffer(SampleFormat sample_format, ChannelLayout channel_layout, int channel_count, int sample_rate, int frame_count, bool create_buffer, const uint8* const* data, const base::TimeDelta timestamp) argument
94 CopyFrom( SampleFormat sample_format, ChannelLayout channel_layout, int channel_count, int sample_rate, int frame_count, const uint8* const* data, const base::TimeDelta timestamp) argument
116 CreateBuffer( SampleFormat sample_format, ChannelLayout channel_layout, int channel_count, int sample_rate, int frame_count) argument
134 CreateEmptyBuffer( ChannelLayout channel_layout, int channel_count, int sample_rate, int frame_count, const base::TimeDelta timestamp) argument
[all...]
H A Daudio_bus.cc311 int frame_count,
315 CHECK_LE(source_start_frame + frame_count, frames());
316 CHECK_LE(dest_start_frame + frame_count, dest->frames());
323 sizeof(*channel(i)) * frame_count);
310 CopyPartialFramesTo(int source_start_frame, int frame_count, int dest_start_frame, AudioBus* dest) const argument
H A Daudio_splicer.cc39 wrapper->set_frames(buffer->frame_count());
58 void ResetTimestampState(int64 frame_count, base::TimeDelta base_timestamp);
105 void AudioStreamSanitizer::ResetTimestampState(int64 frame_count, argument
110 if (frame_count > 0)
111 output_timestamp_helper_.AddFrames(frame_count);
125 DCHECK_GT(input->frame_count(), 0);
184 if (input->frame_count() <= frames_to_skip) {
211 output_timestamp_helper_.AddFrames(buffer->frame_count());
216 int frame_count = 0; local
218 frame_count
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Dset_maps.c164 int frame_count = 0; local
228 ++frame_count;
230 if (frame_count == 22 && encoder->fourcc == VP8_FOURCC) {
232 } else if (frame_count == 33) {
234 } else if (frame_count == 44) {
238 encode_frame(&codec, &raw, frame_count, writer);
246 printf("Processed %d frames.\n", frame_count);
H A Dsimple_encoder.c154 int frame_count = 0; local
237 if (keyframe_interval > 0 && frame_count % keyframe_interval == 0)
239 encode_frame(&codec, &raw, frame_count++, flags, writer);
247 printf("Processed %d frames.\n", frame_count);
H A Dtwopass_encoder.c134 int frame_count = 0; local
142 ++frame_count;
143 get_frame_stats(&codec, raw, frame_count, 1, 0, VPX_DL_GOOD_QUALITY,
148 while (get_frame_stats(&codec, NULL, frame_count, 1, 0,
151 printf("Pass 0 complete. Processed %d frames.\n", frame_count);
171 int frame_count = 0; local
182 ++frame_count;
183 encode_frame(&codec, raw, frame_count, 1, 0, VPX_DL_GOOD_QUALITY, writer);
196 printf("Pass 1 complete. Processed %d frames.\n", frame_count);
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/
H A Dunpack.cc69 int frame_count = 0; local
117 frame_count++;
206 fprintf(settings_file, "Init at frame: %d\n", frame_count);
/external/chromium_org/third_party/webrtc/video/
H A Dsend_statistics_proxy.cc98 uint32_t frame_count,
107 stats->delta_frames = frame_count;
110 stats->key_frames = frame_count;
97 FrameCountUpdated(FrameType frame_type, uint32_t frame_count, const unsigned int ssrc) argument
/external/libvpx/libvpx/examples/
H A Dset_maps.c158 int frame_count = 0; local
219 ++frame_count;
221 if (frame_count == 22 && encoder->fourcc == VP8_FOURCC) {
223 } else if (frame_count == 33) {
225 } else if (frame_count == 44) {
229 encode_frame(&codec, &raw, frame_count, writer);
234 printf("Processed %d frames.\n", frame_count);
H A Dsimple_encoder.c153 int frame_count = 0; local
235 if (keyframe_interval > 0 && frame_count % keyframe_interval == 0)
237 encode_frame(&codec, &raw, frame_count++, flags, writer);
243 printf("Processed %d frames.\n", frame_count);
H A Dtwopass_encoder.c184 int frame_count = 0; local
200 ++frame_count;
203 get_frame_stats(&codec, &raw, frame_count, 1, 0, VPX_DL_BEST_QUALITY,
206 encode_frame(&codec, &raw, frame_count, 1, 0, VPX_DL_BEST_QUALITY,
212 get_frame_stats(&codec, NULL, frame_count, 1, 0, VPX_DL_BEST_QUALITY,
219 printf("Pass %d complete. Processed %d frames.\n", pass + 1, frame_count);
/external/lldb/source/Plugins/Process/Utility/
H A DUnwindMacOSXFrameBackchain.cpp59 const uint32_t frame_count = GetFrameCount(); local
60 if (idx < frame_count)
80 const uint32_t frame_count = GetFrameCount(); local
81 if (concrete_idx < frame_count)
/external/chromium_org/ppapi/tests/
H A Dtest_audio.cc170 uint32_t frame_count = audio_config_interface_->RecommendSampleFrameCount( local
173 instance_->pp_instance(), sample_rate, frame_count);
188 ASSERT_EQ(frame_count, audio_config_interface_->GetSampleFrameCount(ac));
539 uint32_t frame_count = audio_config_interface_->RecommendSampleFrameCount( local
542 instance_->pp_instance(), sample_rate, frame_count);
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dtestutils.h134 int frame_count() const { return frame_count_; } function in class:cricket::VideoCapturerListener
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddatarate_test.cc200 const int frame_count = 40; local
202 30, 1, 0, frame_count);
208 vpx_codec_pts_t last_drop = frame_count;
H A Dsvc_test.cc238 int frame_count = 0; local
246 inputs[i].sz, frame_sizes, &frame_count,
250 if (frame_count == 0) {
296 for (frame = 0; frame < frame_count; ++frame) {
305 ASSERT_LT(frame, frame_count) << "Couldn't find a visible frame. "
309 if (frame == frame_count - 1 && !is_multiple_frame_contexts)
320 const size_t index_sz = 2 + mag * frame_count;
/external/chromium_org/third_party/webrtc/common_video/libyuv/
H A Dscaler_unittest.cc399 int frame_count = 0; local
411 frame_count++;
417 avg_psnr = avg_psnr / frame_count;
443 int frame_count = 0; local
468 frame_count++;
471 if (frame_count) {
475 (static_cast<double>(total_clock) / frame_count));
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
H A Dvie_autotest_capture.cc452 int frame_count = 0; local
461 while (frame_count < 120) {
473 frame_count++;
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_channel.h427 uint32_t frame_count,
431 callback_->FrameCountUpdated(frame_type, frame_count, ssrc);
426 FrameCountUpdated(FrameType frame_type, uint32_t frame_count, const unsigned int ssrc) argument
/external/chromium_org/tools/android/heap_profiler/
H A Dheap_profiler_hooks_android.c186 uint32_t frame_count; member in struct:__anon16418
200 state->frames[state->frame_count++] = ip;
201 return (state->frame_count >= state->max_depth) ?
208 return state.frame_count;
/external/libvpx/libvpx/test/
H A Ddatarate_test.cc163 const int frame_count = 40; local
165 30, 1, 0, frame_count);
171 vpx_codec_pts_t last_drop = frame_count;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dtemporal_filter.c226 int frame_count,
284 for (frame = 0; frame < frame_count; frame++)
223 vp8_temporal_filter_iterate_c( VP8_COMP *cpi, int frame_count, int alt_ref_index, int strength ) argument
/external/libvpx/libvpx/vp8/encoder/
H A Dtemporal_filter.c225 int frame_count,
283 for (frame = 0; frame < frame_count; frame++)
222 vp8_temporal_filter_iterate_c( VP8_COMP *cpi, int frame_count, int alt_ref_index, int strength ) argument
/external/chromium_org/remoting/codec/
H A Dcodec_test.cc407 int frame_count; local
408 for (frame_count = 0;
409 (frame_count < kMinimumFrameCount + kWarmUpFrameCount ||
411 ++frame_count) {
412 if (frame_count == kWarmUpFrameCount) {
422 if (frame_count >= kWarmUpFrameCount) {
427 return (frame_count * base::TimeDelta::FromSeconds(1)) / elapsed;

Completed in 709 milliseconds

1234