HomeSort by relevance Sort by last modified time
    Searched refs:frames (Results 76 - 100 of 807) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/media/audio/
audio_power_monitor.h 50 // Scan more |frames| of audio data from |buffer|. It is safe to call this
52 void Scan(const AudioBus& buffer, int frames);
  /external/chromium_org/media/base/
audio_pull_fifo.h 23 // frames are available to satisfy the request. |frame_delay| is the number
24 // of output frames already processed and can be used to estimate delay.
30 // length |frames| audio frames.
31 AudioPullFifo(int channels, int frames, const ReadCB& read_cb);
34 // Consumes |frames_to_consume| audio frames from the FIFO and copies
audio_bus_perftest.cc 17 const int frame_size = bus->frames() * bus->channels();
23 bus->ToInterleaved(bus->frames(), byte_size, interleaved.get());
33 bus->FromInterleaved(interleaved.get(), bus->frames(), byte_size);
audio_hash.cc 24 void AudioHash::Update(const AudioBus* audio_bus, int frames) {
28 for (uint32 i = 0; i < static_cast<uint32>(frames); ++i) {
43 sample_count_ += static_cast<uint32>(frames);
audio_pull_fifo_unittest.cc 44 // Consume data using different sizes, acquire audio frames from the FIFO
56 EXPECT_LT(last_frame_delay_, audio_bus_->frames());
67 EXPECT_EQ(audio_bus->frames(), kMaxFramesInFifo);
68 for (int i = 0; i < audio_bus->frames(); ++i) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_libbacktrace.h 35 uptr SymbolizeCode(uptr addr, AddressInfo *frames, uptr max_frames,
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifHeader.java 16 public List<GifFrame> frames = new ArrayList<GifFrame>(); field in class:GifHeader
27 //TODO: this is set both during reading the header and while decoding frames...
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/
pcm_rate.h 96 snd_pcm_uframes_t (*input_frames)(void *obj, snd_pcm_uframes_t frames);
100 snd_pcm_uframes_t (*output_frames)(void *obj, snd_pcm_uframes_t frames);
144 snd_pcm_uframes_t (*input_frames)(void *obj, snd_pcm_uframes_t frames);
145 snd_pcm_uframes_t (*output_frames)(void *obj, snd_pcm_uframes_t frames);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
pcm_rate.h 96 snd_pcm_uframes_t (*input_frames)(void *obj, snd_pcm_uframes_t frames);
100 snd_pcm_uframes_t (*output_frames)(void *obj, snd_pcm_uframes_t frames);
144 snd_pcm_uframes_t (*input_frames)(void *obj, snd_pcm_uframes_t frames);
145 snd_pcm_uframes_t (*output_frames)(void *obj, snd_pcm_uframes_t frames);
  /external/chromium_org/media/audio/cras/
cras_unified.cc 294 unsigned int frames,
299 return me->DispatchCallback(frames,
317 uint32 CrasUnifiedStream::DispatchCallback(size_t frames,
324 return WriteAudio(frames, output_samples, output_ts);
329 return ReadWriteAudio(frames, input_samples, output_samples,
339 uint32 CrasUnifiedStream::ReadWriteAudio(size_t frames,
344 DCHECK_EQ(frames, static_cast<size_t>(output_bus_->frames()));
348 input_bus_->FromInterleaved(input_samples, frames, bytes_per_sample);
369 uint32 CrasUnifiedStream::WriteAudio(size_t frames,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionView.js 68 var frames = /** @type {!Array.<!Window>} */ (window.frames);
69 this._frameIndex = Array.prototype.indexOf.call(frames, this._iframe.contentWindow);
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
decode_perf_test.cc 89 const unsigned frames = video.frame_number(); local
90 const double fps = double(frames) / elapsed_secs;
97 printf("\t\"totalFrames\" : %u,\n", frames);
  /external/chromium_org/ui/views/controls/
throbber.h 24 // |frame_time_ms| is the amount of time that should elapse between frames
29 Throbber(int frame_time_ms, bool paint_while_stopped, gfx::ImageSkia* frames);
36 // Set custom throbber frames. Otherwise IDR_THROBBER is loaded.
37 void SetFrames(const gfx::ImageSkia* frames);
51 int frame_count_; // How many frames we have.
53 const gfx::ImageSkia* frames_; // Frames images.
67 SmoothedThrobber(int frame_delay_ms, gfx::ImageSkia* frames);
  /external/libvpx/libvpx/test/
decode_perf_test.cc 89 const unsigned frames = video.frame_number(); local
90 const double fps = double(frames) / elapsed_secs;
97 printf("\t\"totalFrames\" : %u,\n", frames);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
decode_perf_test.cc 89 const unsigned frames = video.frame_number(); local
90 const double fps = double(frames) / elapsed_secs;
97 printf("\t\"totalFrames\" : %u,\n", frames);
  /frameworks/av/media/libstagefright/webm/
WebmFrameThread.cpp 94 // frames:
95 // sequence of input audio/video frames received from the source.
99 // frame since frames are ordered by timestamp.
107 List<const sp<WebmFrame> >& frames,
110 CHECK(!frames.empty() && children.empty());
112 const sp<WebmFrame> f = *(frames.begin());
129 // Write out (possibly multiple) webm cluster(s) from frames split on video key frames.
133 void WebmFrameSinkThread::flushFrames(List<const sp<WebmFrame> >& frames, bool last) {
134 if (frames.empty())
    [all...]
  /external/chromium_org/base/debug/
stack_trace_android.cc 23 StackCrawlState(uintptr_t* frames, size_t max_depth)
24 : frames(frames),
29 uintptr_t* frames; member in struct:__anon6823::StackCrawlState
45 state->frames[state->frame_count++] = ip;
  /external/chromium_org/media/filters/
audio_clock_unittest.cc 23 void WroteAudio(int frames, int delay_frames, float playback_rate) {
24 timestamp_helper_.AddFrames(static_cast<int>(frames * playback_rate));
26 frames, delay_frames, playback_rate, timestamp_helper_.GetTimestamp());
29 void WroteSilence(int frames, int delay_frames) {
30 clock_.WroteSilence(frames, delay_frames);
audio_renderer_algorithm.cc 24 // 1) Extract |target_block_| as input frames at indices
28 // 2) Extract |search_block_| as input frames at indices
66 // The starting size in frames for |audio_buffer_|. Previous usage maintained a
67 // queue of 16 AudioBuffers, each of 512 frames. This worked well, so we
68 // maintain this number of frames.
158 std::min(static_cast<int>(audio_buffer_.frames() / playback_rate_),
161 // Compute accurate number of frames to actually skip in the source data.
163 // only skip over complete frames, so a partial frame may remain for next
174 // frames again.
186 std::min(audio_buffer_.frames(), requested_frames)
244 const int frames = audio_buffer_.frames(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineFrameOverview.js 40 this.element.id = "timeline-overview-frames";
69 this._overviewGrid.element.classList.add("timeline-overview-frames-mode");
74 this._overviewGrid.element.classList.remove("timeline-overview-frames-mode");
90 var frames = this._frameModel.frames();
91 var framesPerBar = Math.max(1, frames.length * minBarWidth / this._canvas.width);
92 var visibleFrames = this._aggregateFrames(frames, framesPerBar);
104 * @param {!Array.<!WebInspector.TimelineFrame>} frames
108 _aggregateFrames: function(frames, framesPerBar)
111 for (var barNumber = 0, currentFrame = 0; currentFrame < frames.length; ++barNumber)
    [all...]
  /external/compiler-rt/lib/asan/scripts/
symbolize.py 82 frames = []
93 frames.append((function_name, file_name))
96 if not frames:
97 frames.append(('', ''))
104 for frame in frames:
  /system/core/libbacktrace/
UnwindPtrace.cpp 77 std::vector<backtrace_frame_data_t>* frames = GetFrames(); local
78 frames->reserve(MAX_BACKTRACE_FRAMES);
95 frames->resize(num_frames+1);
96 backtrace_frame_data_t* frame = &frames->at(num_frames);
103 backtrace_frame_data_t* prev = &frames->at(num_frames-1);
  /external/chromium_org/media/audio/sounds/
wav_audio_handler.cc 104 const int frames = std::min(bus->frames(), remaining_frames); local
105 bus->FromInterleaved(data_.data() + cursor, frames,
107 *bytes_written = frames * params_.GetBytesPerFrame();
108 bus->ZeroFramesPartial(frames, bus->frames() - frames);
  /external/chromium_org/net/quic/test_tools/
quic_test_packet_maker.cc 66 QuicFrames frames; local
67 frames.push_back(QuicFrame(&ack));
73 frames.push_back(QuicFrame(&feedback));
79 frames.push_back(QuicFrame(&stop_waiting));
83 frames.push_back(QuicFrame(&rst));
87 BuildUnsizedDataPacket(&framer, header, frames).packet);
133 QuicFrames frames; local
134 frames.push_back(QuicFrame(&ack));
136 frames.push_back(QuicFrame(&feedback));
142 frames.push_back(QuicFrame(&stop_waiting))
227 QuicFrames frames; local
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/command/
frame_filters.py 24 import gdb.frames namespace
69 key=lambda i: gdb.frames.get_priority(i[1]),
80 str(gdb.frames.get_priority(frame_filter[1])))
82 self.enabled_string(gdb.frames.get_enabled(frame_filter[1])))
143 op_list = gdb.frames.return_list(list_op)
147 gdb.frames.set_enabled(item, flag)
156 gdb.frames.set_enabled(ff, flag)
242 printer_list = gdb.frames.return_list(text.split()[0].rstrip())
276 printer_list = gdb.frames.return_list(text.split()[0].rstrip())
345 op_list = gdb.frames.return_list(list_op
    [all...]

Completed in 1515 milliseconds

1 2 34 5 6 7 8 91011>>