HomeSort by relevance Sort by last modified time
    Searched full:frames (Results 51 - 75 of 3653) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
PoseTrack.java 50 private PoseFrame[] frames; field in class:PoseTrack
97 public PoseTrack(int targetMeshIndex, float[] times, PoseFrame[] frames){
100 this.frames = frames;
104 PoseFrame frame = frames[frameIndex];
159 if (this.frames != null) {
160 result.frames = new PoseFrame[this.frames.length];
161 for (int i = 0; i < this.frames.length; ++i) {
162 result.frames[i] = this.frames[i].clone()
    [all...]
  /external/chromium/chrome/browser/
session_history_uitest.cc 34 // Simulate clicking a link. Only works on the frames.html testserver page.
40 // Simulate filling in form data. Only works on the frames.html page with
50 // Simulate submitting a form. Only works on the frames.html page with
164 GURL frames(test_server_.GetURL("files/session_history/frames.html"));
165 ASSERT_TRUE(tab_->NavigateToURL(frames));
167 EXPECT_EQ(frames, GetTabURL());
171 EXPECT_EQ(frames, GetTabURL());
175 EXPECT_EQ(frames, GetTabURL());
181 EXPECT_EQ(frames, GetTabURL())
    [all...]
  /external/chromium_org/net/quic/
quic_packet_creator.h 5 // Accumulates frames for the next packet until more frames no longer fit or
104 // Serializes all frames into a single packet. All frames must fit into a
108 SerializedPacket SerializeAllFrames(const QuicFrames& frames);
110 // Re-serializes frames with the original packet's sequence number length.
113 const QuicFrames& frames, QuicSequenceNumberLength original_length);
115 // Returns true if there are frames pending to be serialized.
119 // frames in the packet. Since stream frames are slightly smaller when the
    [all...]
quic_ack_notifier_manager.cc 75 // Run through all the frames and if any of them are stream frames and have
79 RetransmittableFrames* frames = serialized_packet.retransmittable_frames; local
81 // AckNotifiers can only be attached to retransmittable frames.
82 if (!frames) {
86 for (QuicFrames::const_iterator it = frames->frames().begin();
87 it != frames->frames().end(); ++it) {
  /external/srec/srec/include/
swicms.h 31 #define SWICMS_CACHE_SIZE_DEFAULT 100 /* equals #frames/resolution */
44 * frames of speech and uses that as a channel mean for the next utterance. A forget_factor
58 int forget_factor; /* in frames, mass of cmn average */
65 int num_frames_in_cmn; /* num frames used to estimate cmn (or lda_cmn) */
72 int num_bou_frames_to_skip; /* don't start accum 'til this many frames */
74 int num_frames_in_accum; /* number of frames in accum */
75 imeldata accum[MAX_CHAN_DIM]; /* accumulates frames of the current utt */
78 int cached_num_frames; /* we cache frames, until recognition is done
80 int cache_resolution; /* we'll avg this many frames per section */
  /external/libvpx/libvpx/examples/
decode_with_partial_drops.txt 5 This is an example utility which drops a series of frames (or parts of frames),
27 /* Uncompressed part is 3 bytes for P frames and 10 bytes for I frames */
77 /* don't drop key frames */
122 which specifies the range or pattern of frames to drop. The parameter is
149 Dropping A Range Of Frames
151 To drop a range of frames, specify the starting frame and the ending
153 frames 5 through 10 (base 1).
158 Dropping A Pattern Of Frames
    [all...]
force_keyframe.txt 14 keyframe every 8 frames.
27 when the encoder generates a keyframe. Note that every 8 frames a 'K'
  /external/chromium_org/chrome/test/chromedriver/
session.cc 67 frames.clear();
73 if (!frames.empty())
74 parent_frame_id = frames.back().frame_id;
75 frames.push_back(FrameInfo(parent_frame_id, frame_id, chromedriver_frame_id));
79 if (frames.empty())
81 return frames.back().frame_id;
  /external/chromium_org/chrome/test/functional/
webrtc_write_wsh.py 8 # and stores incoming frames to disk.
35 # We assume we will receive only frames, i.e. binary data
43 """Writes received frames to disk.
45 The frames are named in the format frame_xxxx, where xxxx is the 0-padded
46 frame number. The frames and their numbers are obtained from a synchronized
47 queue. The frames are written in the directory specified by _WORKING_DIR.
  /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
multi_channel_resampler_unittest.cc 45 void InitializeAudioData(int channels, int frames) {
46 frames_ = frames;
47 audio_bus_ = AudioBus::Create(channels, frames);
59 for (int j = 0; j < audio_bus->frames(); ++j)
63 void MultiChannelTest(int channels, int frames, double expected_max_rms_error,
65 InitializeAudioData(channels, frames);
77 EXPECT_LT(last_frame_delay_, audio_bus_->frames());
81 resampler.Resample(frames, audio_bus_.get());
audio_converter.cc 146 resampler_->Resample(temp_dest->frames(), temp_dest);
153 DCHECK_EQ(temp_dest->frames(), dest->frames());
166 mixer_input_audio_bus_->frames() != dest->frames()) {
168 AudioBus::Create(input_channel_count_, dest->frames());
172 (!unmixed_audio_ || unmixed_audio_->frames() != dest->frames())) {
176 unmixed_audio_ = AudioBus::Create(input_channel_count_, dest->frames());
182 DCHECK_EQ(temp_dest->frames(), mixer_input_audio_bus_->frames())
    [all...]
  /external/chromium_org/skia/ext/
skia_utils_ios.mm 85 std::vector<SkBitmap> frames;
99 frames.push_back(bitmap);
102 DLOG_IF(WARNING, frames.size() != count) << "Only decoded " << frames.size()
103 << " frames for " << count << " expected.";
104 return frames;
  /system/media/audio_utils/include/audio_utils/
resampler.h 46 * as input: buffer->frame_count is the number of frames requested
47 * as output: buffer->frame_count is the number of frames returned
54 * as input: buffer->frame_count is the number of frames released
69 * *outFrameCount is updated with the actual number of frames produced.
75 * resample at most *inFrameCount frames from in buffer and output at most
77 * with the number of frames remaining in input and written to output.
  /system/media/audio_utils/
resampler.c 37 size_t frames_in; // number of frames in input buffer
38 size_t frames_rq; // cached number of output frames
39 size_t frames_needed; // minimum number of input frames to produce
40 // frames_rq output frames
71 // outputs a number of frames less or equal to *outFrameCount and updates *outFrameCount
72 // with the actual number of frames produced.
88 // update and cache the number of frames needed at the input sampling rate to produce
89 // the number of frames requested at the output sampling rate
99 // make sure that the number of frames present in rsmp->in_buf (rsmp->frames_in) is at
100 // least the number of frames needed to produce the number of frames requested a
239 int frames = speex_resampler_get_input_latency(rsmp->speex_resampler); local
    [all...]
  /bionic/libc/bionic/
debug_stacktrace.cpp 73 uintptr_t* frames; member in struct:stack_crawl_state_t
78 stack_crawl_state_t(uintptr_t* frames, size_t max_depth)
79 : frames(frames), frame_count(0), max_depth(max_depth), have_skipped_self(false) {
112 state->frames[state->frame_count++] = ip;
116 __LIBC_HIDDEN__ int get_backtrace(uintptr_t* frames, size_t max_depth) {
117 stack_crawl_state_t state(frames, max_depth);
122 __LIBC_HIDDEN__ void log_backtrace(uintptr_t* frames, size_t frame_count) {
124 if (frames == NULL) {
126 frames = self_bt
    [all...]
  /external/chromium_org/net/websockets/
websocket_channel_test.cc 44 // Printing helpers to allow GoogleMock to print frames. These are explicitly
187 virtual int ReadFrames(ScopedVector<WebSocketFrame>* frames,
192 virtual int WriteFrames(ScopedVector<WebSocketFrame>* frames,
251 std::ostream& operator<<(std::ostream& os, const InitFrame (&frames)[N]) {
260 os << frames[i]; local
291 // some frames. Use like ReadFrames(_, _).WillOnce(ReturnFrames(&frames));
292 // |frames| is an array of InitFrame. |frames| needs to be passed by pointer
369 const InitFrame (&frames)[N])
478 ScopedVector<WebSocketFrame> frames; member in struct:net::__anon9606::ReadableFakeWebSocketStream::Response
932 static const InitFrame frames[] = { local
945 static const InitFrame frames[] = { local
980 static const InitFrame frames[] = { local
993 static const InitFrame frames[] = { local
1055 static const InitFrame frames[] = { local
1068 static const InitFrame frames[] = { local
1082 static const InitFrame frames[] = { local
1095 static const InitFrame frames[] = { local
1110 static const InitFrame frames[] = { local
1125 static const InitFrame frames[] = {{FINAL_FRAME, 0x7, NOT_MASKED, ""}}; local
1137 static const InitFrame frames[] = {{FINAL_FRAME, 0x7, NOT_MASKED, NULL}}; local
1190 static const InitFrame frames[] = { local
1212 static const InitFrame frames[] = { local
1254 static const InitFrame frames[] = { local
1367 static const InitFrame frames[] = { local
1384 static const InitFrame frames[] = { local
1444 static const InitFrame frames[] = { local
1466 static const InitFrame frames[] = {{FINAL_FRAME, 4, NOT_MASKED, "HELLO"}}; local
1524 static const InitFrame frames[] = { local
1540 static const InitFrame frames[] = { local
1704 static const InitFrame frames[] = { local
1724 static const InitFrame frames[] = { local
1812 static const InitFrame frames[] = { local
1873 static const InitFrame frames[] = { local
1902 ScopedVector<WebSocketFrame>* frames = NULL; local
1973 static const InitFrame frames[] = { local
1988 static const InitFrame frames[] = { local
2008 static const InitFrame frames[] = { local
2027 static const InitFrame frames[] = { local
2042 static const InitFrame frames[] = { local
2174 ScopedVector<WebSocketFrame>* frames = NULL; local
2203 ScopedVector<WebSocketFrame> frames; local
2226 static const InitFrame frames[] = { local
2288 static const InitFrame frames[] = { local
2347 static const InitFrame frames[] = { local
    [all...]
websocket_basic_stream.cc 45 // Returns the total serialized size of |frames|. This function assumes that
46 // |frames| will be serialized with mask field. This function forces the
47 // masked bit of the frames on.
49 ScopedVector<WebSocketFrame>* frames) {
53 for (WebSocketFrameIterator it = frames->begin(); it != frames->end(); ++it) {
58 // to cache anywhere near 2GB of frames.
89 int WebSocketBasicStream::ReadFrames(ScopedVector<WebSocketFrame>* frames,
91 DCHECK(frames->empty());
93 // it as WebSocket frames
    [all...]
  /external/chromium_org/content/renderer/media/
webrtc_local_audio_source_provider.cc 85 DCHECK(input_bus_->frames() == number_of_frames);
89 if (fifo_->frames() + number_of_frames <= fifo_->max_frames()) {
94 DLOG(WARNING) << "Local source provicer FIFO is full" << fifo_->frames();
125 if (fifo_->frames() >= audio_bus->frames()) {
126 fifo_->Consume(audio_bus, 0, audio_bus->frames());
129 DVLOG(1) << "WARNING: Underrun, FIFO has data " << fifo_->frames()
130 << " samples but " << audio_bus->frames()
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_android-inl.h 54 uintptr_t* frames; member in struct:stack_crawl_state_t
60 stack_crawl_state_t(uintptr_t* frames, int max_depth, int skip_count)
61 : frames(frames),
93 state->frames[state->frame_count++] = ip;
106 // GetStack{Trace,Frames}()
107 // GetStack{Trace,Frames}WithContext()
115 // void* ucp: a ucontext_t* (GetStack{Trace,Frames}WithContext only)
  /external/chromium_org/tools/tcmalloc/
print-live-objects.py 36 "frames": matches.group(3).strip().split(" ")}
44 for frame in trace["frames"]:
62 frames = []
63 for frame in trace["frames"]:
64 frames.append(table[frame])
65 trace["frames"] = frames
85 for frame in trace["frames"]:
  /ndk/tests/device/static-executable/jni/
Android.mk 14 # x86 and mips which use eh frames) since crt files are now in C, and the trick
15 # in the previous *S file to iterate all eh frames and record ranges is gone
  /external/chromium_org/chrome/browser/ui/gtk/
throbber_gtk.h 51 // Load the animation frames from IDR_THROBBER.
62 // A linear animation over the loaded frames.
65 // The image containing the throbber frames.
68 // The number of frames in |frames_|.
  /external/chromium_org/content/test/data/
post_message2.html 6 window.opener.frames[0][1].postMessage(msg, origin);
  /external/chromium_org/media/filters/
audio_file_reader.h 37 // audio data. Any unfilled frames will be zeroed out.
41 // Returns the number of sample-frames actually read which will always be
42 // <= audio_bus->frames()
52 // The Read() method returns the actual number of sample-frames it has read.

Completed in 805 milliseconds

1 23 4 5 6 7 8 91011>>