HomeSort by relevance Sort by last modified time
    Searched refs:next_frame (Results 1 - 25 of 27) sorted by null

1 2

  /external/qemu/distrib/sdl-1.2.15/src/audio/bsd/
SDL_bsdaudio.h 45 float next_frame; member in struct:SDL_PrivateAudioData
56 #define next_frame (this->hidden->next_frame) macro
  /external/qemu/distrib/sdl-1.2.15/src/audio/esd/
SDL_esdaudio.h 45 float next_frame; member in struct:SDL_PrivateAudioData
55 #define next_frame (this->hidden->next_frame) macro
SDL_esdaudio.c 202 ticks = ((Sint32)(next_frame - SDL_GetTicks()))-FUDGE_TICKS;
222 next_frame += frame_ticks;
308 next_frame = SDL_GetTicks()+frame_ticks;
  /external/qemu/distrib/sdl-1.2.15/src/audio/paudio/
SDL_paudio.h 45 float next_frame; member in struct:SDL_PrivateAudioData
55 #define next_frame (this->hidden->next_frame) macro
SDL_paudio.c 134 ticks = ((Sint32)(next_frame - SDL_GetTicks()))-FUDGE_TICKS;
204 next_frame += frame_ticks;
501 next_frame = SDL_GetTicks()+frame_ticks;
  /external/qemu/distrib/sdl-1.2.15/src/audio/arts/
SDL_artsaudio.h 47 float next_frame; member in struct:SDL_PrivateAudioData
57 #define next_frame (this->hidden->next_frame) macro
SDL_artsaudio.c 232 ticks = ((Sint32)(next_frame - SDL_GetTicks()))-FUDGE_TICKS;
247 next_frame += frame_ticks;
  /external/qemu/distrib/sdl-1.2.15/src/audio/dma/
SDL_dmaaudio.h 46 float next_frame; member in struct:SDL_PrivateAudioData
57 #define next_frame (this->hidden->next_frame) macro
SDL_dmaaudio.c 159 ticks = ((Sint32)(next_frame - SDL_GetTicks()))-FUDGE_TICKS;
189 next_frame = SDL_GetTicks()+frame_ticks;
209 next_frame += frame_ticks;
437 next_frame = SDL_GetTicks()+frame_ticks;
  /external/qemu/distrib/sdl-1.2.15/src/audio/dsp/
SDL_dspaudio.h 51 #define next_frame (this->hidden->next_frame) macro
  /external/chromium_org/media/cast/framer/
framer_unittest.cc 47 bool next_frame = false; local
49 &next_frame));
55 bool next_frame = false; local
60 &next_frame));
65 &next_frame));
66 EXPECT_TRUE(next_frame);
75 bool next_frame = false; local
81 &next_frame));
82 EXPECT_TRUE(next_frame);
93 &next_frame));
106 bool next_frame = false; local
130 bool next_frame = false; local
156 bool next_frame = false; local
169 bool next_frame = false; local
189 bool next_frame = false; local
213 bool next_frame = false; local
266 bool next_frame = false; local
301 bool next_frame = false; local
    [all...]
framer.cc 58 bool* next_frame) {
63 *next_frame = true;
68 *next_frame = false;
81 bool* next_frame) {
86 *next_frame = true;
94 *next_frame = false;
framer.h 47 bool* next_frame);
51 bool* next_frame);
  /external/libvpx/libvpx/vp9/encoder/
vp9_firstpass.c 87 static int lookup_next_frame_stats(VP9_COMP *cpi, FIRSTPASS_STATS *next_frame) {
91 *next_frame = *cpi->twopass.stats_in;
1329 FIRSTPASS_STATS next_frame; local
1649 FIRSTPASS_STATS next_frame = { 0 }; local
2281 FIRSTPASS_STATS next_frame; local
2394 FIRSTPASS_STATS next_frame; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
firstpass.c 87 static int lookup_next_frame_stats(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame)
92 *next_frame = *cpi->twopass.stats_in;
1504 FIRSTPASS_STATS next_frame; local
1740 FIRSTPASS_STATS next_frame; local
2524 FIRSTPASS_STATS next_frame; local
2719 FIRSTPASS_STATS next_frame; local
    [all...]
  /external/chromium_org/media/cast/audio_receiver/
audio_receiver.cc 280 bool next_frame = false; local
284 &rtp_timestamp, &next_frame)) {
299 next_frame, &encoded_frame)) {
311 bool next_frame = false; local
315 &rtp_timestamp, &next_frame)) {
326 if (!PostEncodedAudioFrame(callback, rtp_timestamp, next_frame,
337 bool next_frame,
348 if (!next_frame && (time_until_playout > min_wait_delta)) {
audio_receiver.h 84 bool next_frame,
  /external/chromium_org/media/cast/video_receiver/
video_receiver.cc 213 bool next_frame = false; local
216 &next_frame)) {
229 if (PullEncodedVideoFrame(rtp_timestamp, next_frame, &encoded_frame,
246 bool next_frame, scoped_ptr<EncodedVideoFrame>* encoded_frame,
260 if (!next_frame && (time_until_render > min_wait_delta)) {
299 bool next_frame = false; local
303 &next_frame)) {
320 if (PullEncodedVideoFrame(rtp_timestamp, next_frame, &encoded_frame,
video_receiver.h 82 bool next_frame,
  /external/chromium_org/content/renderer/media/
rtc_video_encoder.cc 386 const webrtc::I420VideoFrame* next_frame = input_next_frame_; local
418 media::CopyYPlane(next_frame->buffer(webrtc::kYPlane),
419 next_frame->stride(webrtc::kYPlane),
420 next_frame->height(),
422 media::CopyUPlane(next_frame->buffer(webrtc::kUPlane),
423 next_frame->stride(webrtc::kUPlane),
424 next_frame->height(),
426 media::CopyVPlane(next_frame->buffer(webrtc::kVPlane),
427 next_frame->stride(webrtc::kVPlane),
428 next_frame->height()
    [all...]
  /external/chromium_org/media/filters/
video_renderer_impl.cc 320 scoped_refptr<VideoFrame> next_frame = ready_frames_.front(); local
324 last_timestamp_ = next_frame->GetTimestamp();
326 const gfx::Size& natural_size = next_frame->natural_size();
332 paint_cb_.Run(next_frame);
505 const scoped_refptr<VideoFrame>& next_frame,
509 base::TimeDelta next_pts = next_frame->GetTimestamp();
video_renderer_impl.h 112 const scoped_refptr<VideoFrame>& next_frame,
  /external/chromium_org/content/browser/renderer_host/
software_frame_manager.cc 124 scoped_refptr<SoftwareFrame> next_frame(new SoftwareFrame(
131 current_frame_.swap(next_frame);
  /external/chromium/net/websockets/
websocket.cc 304 const char* next_frame = start_frame; local
305 const char* p = next_frame;
333 next_frame = p;
374 next_frame = p;
381 SkipReadBuffer(next_frame - start_frame);
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_damage.cc 206 int next_frame = layer_tree_host()->source_frame_number(); variable
207 switch (next_frame) {
291 int next_frame = layer_tree_host()->source_frame_number(); variable
292 switch (next_frame) {

Completed in 1050 milliseconds

1 2