Searched defs:frames (Results 1 - 25 of 174) sorted by relevance

1234567

/external/chromium_org/media/tools/shader_bench/
H A Dpainter.cc24 std::deque<scoped_refptr<media::VideoFrame> >* frames) {
25 frames_ = frames;
23 LoadFrames( std::deque<scoped_refptr<media::VideoFrame> >* frames) argument
/external/srec/srec/ca/
H A Dutt_proc.c40 int ii, frames = 0; local
42 frames = get_background_statistics(hUtt->data.gen_utt.frame,
47 /* log_report ("UTT (%d): ", frames); */
54 return (frames);
/external/chromium/chrome/browser/ui/gtk/
H A Dchrome_gtk_frame.h44 MetaFrames frames; member in struct:_ChromeGtkFrame
/external/chromium/net/websockets/
H A Dwebsocket_frame_handler_unittest.cc47 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
54 kInputData, kInputDataLen, &frames));
55 EXPECT_EQ(2UL, frames.size());
57 EXPECT_EQ(kInputData, frames[0].frame_start);
58 EXPECT_EQ(kHelloWorldFrameLen, frames[0].frame_length);
59 EXPECT_EQ(kInputData + 1, frames[0].message_start);
60 EXPECT_EQ(kHelloWorldFrameLen - 2, frames[0].message_length);
62 EXPECT_EQ(kInputData + kHelloWorldFrameLen, frames[1].frame_start);
63 EXPECT_EQ(2, frames[1].frame_length);
64 EXPECT_EQ(0, frames[
68 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
106 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
[all...]
/external/chromium_org/chrome/browser/ui/gtk/
H A Dchrome_gtk_frame.h42 MetaFrames frames; member in struct:_ChromeGtkFrame
H A Dtitlebar_throb_animation.cc18 // square GdkPixbufs that get stored in |frames|.
19 void MakeThrobberFrames(int resource_id, std::vector<GdkPixbuf*>* frames) { argument
32 frames->push_back(gfx::GdkPixbufFromSkBitmap(frame));
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dchrome_gtk_frame.h42 MetaFrames frames; member in struct:_ChromeGtkFrame
/external/chromium_org/media/base/
H A Daudio_buffer_queue.h36 // Reads a maximum of |frames| frames into |dest| from the current position.
37 // Returns the number of frames read. The current position will advance by the
38 // amount of frames read. |dest_frame_offset| specifies a starting offset into
39 // |dest|. On each call, the frames are converted from their source format
41 int ReadFrames(int frames, int dest_frame_offset, AudioBus* dest);
43 // Copies up to |frames| frames from current position to |dest|. Returns
44 // number of frames copied. Doesn't advance current position. Starts at
46 // a starting offset into |dest|. On each call, the frames ar
58 int frames() const { return frames_; } function in class:media::AudioBufferQueue
[all...]
H A Daudio_buffer_queue_unittest.cc20 int frames,
23 for (int i = 0; i < frames; ++i) {
25 "i=%d/%d start=%f, increment=%f", i, frames, start, increment));
33 const int frames = 8; local
36 EXPECT_EQ(0, buffer.frames());
38 kSampleFormatU8, channels, 10, 1, frames, kNoTime, kNoTime));
39 EXPECT_EQ(frames, buffer.frames());
41 EXPECT_EQ(0, buffer.frames());
43 kSampleFormatU8, channels, 20, 1, frames, kNoTim
19 VerifyResult(float* channel_data, int frames, float start, float increment) argument
49 const int frames = 8; local
73 const int frames = 8; local
119 const int frames = 6; local
180 const int frames = 4; local
[all...]
H A Daudio_buffer_unittest.cc15 int frames,
18 for (int i = 0; i < frames; ++i) {
20 "i=%d/%d start=%f, increment=%f", i, frames, start, increment));
28 const int frames = 8; local
30 const base::TimeDelta duration = base::TimeDelta::FromSeconds(frames);
32 kSampleFormatU8, channels, 1, 1, frames, start_time, duration);
33 EXPECT_EQ(frames, buffer->frame_count());
35 EXPECT_EQ(buffer->duration().InSeconds(), frames);
63 const int frames = 4; local
65 const base::TimeDelta duration = base::TimeDelta::FromSeconds(frames);
14 VerifyResult(float* channel_data, int frames, float start, float increment) argument
83 const int frames = 10; local
108 const int frames = 6; local
131 const int frames = 20; local
153 const int frames = 20; local
186 const int frames = 100; local
219 const int frames = 100; local
240 const int frames = 100; local
[all...]
H A Daudio_bus.h28 // Creates a new AudioBus and allocates |channels| of length |frames|. Uses
30 static scoped_ptr<AudioBus> Create(int channels, int frames);
42 int frames, const std::vector<float*>& channel_data);
47 static scoped_ptr<AudioBus> WrapMemory(int channels, int frames, void* data);
54 // and frames.
55 static int CalculateMemorySize(int channels, int frames);
62 // any unfilled frames when |frames| is less than frames().
63 void FromInterleaved(const void* source, int frames, in
96 int frames() const { return frames_; } function in class:media::AudioBus
[all...]
H A Daudio_hash.cc24 void AudioHash::Update(const AudioBus* audio_bus, int frames) { argument
28 for (uint32 i = 0; i < static_cast<uint32>(frames); ++i) {
43 sample_count_ += static_cast<uint32>(frames);
H A Daudio_pull_fifo.cc14 AudioPullFifo::AudioPullFifo(int channels, int frames, const ReadCB& read_cb) argument
16 fifo_(AudioBus::Create(channels, frames)),
17 fifo_index_(frames) {}
22 DCHECK_LE(frames_to_consume, destination->frames());
31 // Get the remaining audio frames from the producer using the callback.
33 DCHECK_EQ(fifo_index_, fifo_->frames());
47 void AudioPullFifo::Clear() { fifo_index_ = fifo_->frames(); }
52 int frames = std::min(frames_to_provide, fifo_->frames() - fifo_index_); local
53 if (frames <
[all...]
H A Daudio_timestamp_helper_unittest.cc19 // Adds frames to the helper and returns the current timestamp in
21 int64 AddFrames(int frames) { argument
22 helper_.AddFrames(frames);
58 // Verify that adding frames one frame at a time matches the timestamp
59 // returned if the same number of frames are added all at once.
99 // Verify that the same number of frames is returned up
109 // Add frames to the helper so negative frame counts can be tested.
H A Dmulti_channel_resampler.cc45 void MultiChannelResampler::Resample(int frames, AudioBus* audio_bus) { argument
50 resamplers_[0]->Resample(frames, audio_bus->channel(0));
55 // channel. To ensure this, we chunk the number of requested frames into
59 while (output_frames_ready_ < frames) {
61 int frames_this_time = std::min(frames - output_frames_ready_, chunk_size);
72 // number of frames.
82 int frames,
93 DCHECK_EQ(frames, wrapped_resampler_audio_bus_->frames());
97 sizeof(*wrapped_resampler_audio_bus_->channel(channel)) * frames);
81 ProvideInput(int channel, int frames, float* destination) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptCallStack.cpp38 PassRefPtr<ScriptCallStack> ScriptCallStack::create(Vector<ScriptCallFrame>& frames) argument
40 return adoptRef(new ScriptCallStack(frames));
43 ScriptCallStack::ScriptCallStack(Vector<ScriptCallFrame>& frames) argument
45 m_frames.swap(frames);
82 RefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > frames = TypeBuilder::Array<TypeBuilder::Console::CallFrame>::create(); local
84 frames->addItem(m_frames.at(i).buildInspectorObject());
85 return frames;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_android-inl.h54 uintptr_t* frames; member in struct:stack_crawl_state_t
60 stack_crawl_state_t(uintptr_t* frames, int max_depth, int skip_count) argument
61 : frames(frames),
93 state->frames[state->frame_count++] = ip;
/external/chromium_org/v8/src/
H A Dplatform-posix.h77 static int StackWalk(Vector<OS::StackFrame> frames) { argument
78 int frames_size = frames.length();
89 frames[i].address = addresses[i];
92 OS::SNPrintF(MutableCStrVector(frames[i].text, OS::kStackWalkMaxTextLen),
95 frames[i].text[OS::kStackWalkMaxTextLen - 1] = '\0';
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAnimationDrawable.java14 private List<Drawable> frames = new ArrayList<Drawable>(); field in class:ShadowAnimationDrawable
19 frames.add(frame);
24 return frames.size();
37 return frames;
/external/webrtc/test/testsupport/metrics/
H A Dvideo_metrics.h27 // The frames in this data structure are 0-indexed.
41 std::vector<FrameResult> frames; member in struct:webrtc::test::QualityMetricsResult
52 // This function only compares video frames up to the point when the shortest
72 // This function only compares video frames up to the point when the shortest
93 // This function only compares video frames up to the point when the shortest
/external/chromium_org/media/audio/
H A Dvirtual_audio_output_stream.cc80 const int frames = callback_->OnMoreData(audio_bus, AudioBuffersState()); local
81 if (frames < audio_bus->frames())
82 audio_bus->ZeroFramesPartial(frames, audio_bus->frames() - frames);
84 return frames > 0 ? volume_ : 0;
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebPageSerializerTest.cpp121 WebVector<WebURL> frames; local
124 m_webView, m_supportedSchemes, &resources, &frames));
127 EXPECT_EQ(1U, frames.size()); // There should be no duplicates.
128 EXPECT_TRUE(webVectorContains(frames, "http://www.test.com"));
149 // Register the mocked frames.
167 WebVector<WebURL> frames; local
170 m_webView, m_supportedSchemes, &resources, &frames));
173 EXPECT_EQ(4U, frames.size()); // There should be no duplicates.
174 EXPECT_TRUE(webVectorContains(frames, "http://www.test.com"));
175 EXPECT_TRUE(webVectorContains(frames, "htt
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglapi_gentable.c72 void *frames[2]; local
74 if(backtrace(frames, 2) == 2) {
76 dladdr(frames[1], &info);
/external/chromium_org/third_party/opus/src/src/
H A Dopus_private.h38 const unsigned char *frames[48]; member in struct:OpusRepacketizer
/external/libvpx/libvpx/test/
H A Dsuperframe_test.cc50 const int frames = (marker & 0x7) + 1; local
52 const unsigned int index_sz = 2 + mag * frames;
71 // Make sure we do a few frames after the last SF

Completed in 1355 milliseconds

1234567