HomeSort by relevance Sort by last modified time
    Searched refs:frame (Results 276 - 300 of 2876) sorted by null

<<11121314151617181920>>

  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
DebugWebSocketServer.java 109 protected void debugFrameReceived(WebSocketFrame frame) {
111 System.out.println("R " + frame);
116 protected void debugFrameSent(WebSocketFrame frame) {
118 System.out.println("S " + frame);
  /external/pdfium/core/fxcodec/codec/
ccodec_tiffmodule.h 21 int32_t frame,
icodec_tiffmodule.h 25 int32_t frame,
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyThreadReference.java 53 public StackFrame frame(int index) throws IncompatibleThreadStateException { method in class:LazyThreadReference
54 return getValue().frame(index);
93 public void popFrames(StackFrame frame) throws IncompatibleThreadStateException {
94 getValue().popFrames(frame);
  /external/webrtc/talk/media/devices/
carbonvideorenderer.h 51 virtual bool RenderFrame(const VideoFrame* frame);
gtkvideorenderer.h 51 virtual bool RenderFrame(const VideoFrame* frame);
54 // Initialize the attributes when the first frame arrives.
filevideocapturer.h 31 // sequence of captured frames; each frame has a header defined in struct
32 // CapturedFrame, followed by the frame data.
61 // write raw frame pixel data to file without any headers.
65 // Record a video frame to the file. Return true if the frame is written to
68 bool RecordFrame(const CapturedFrame& frame);
127 // Read the frame header from the file stream, video_file_.
128 rtc::StreamResult ReadFrameHeader(CapturedFrame* frame);
130 // Read a frame and determine how long to wait for the next frame. If th
138 const CapturedFrame* frame() const { function in class:cricket::FileVideoCapturer
    [all...]
gdivideorenderer.cc 56 // Called when a new frame is available. Upon this call, we send
60 bool RenderFrame(const VideoFrame* frame);
100 void OnRenderFrame(const VideoFrame* frame);
154 const VideoFrame* frame = video_frame->GetCopyWithRotationApplied(); local
156 if (!SetSize(static_cast<int>(frame->GetWidth()),
157 static_cast<int>(frame->GetHeight()))) {
161 SendMessage(handle(), kRenderFrameMsg, reinterpret_cast<WPARAM>(frame), 0);
244 void GdiVideoRenderer::VideoWindow::OnRenderFrame(const VideoFrame* frame) {
245 if (!frame) {
248 // Convert frame to ARGB format, which is accepted by GD
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/
screen_capture_frame_queue.h 25 // frame - the frame that the caller is working with at the moment, and to the
26 // 'previous' frame - the predecessor of the current frame swapped by
31 // say, frame dimensions change). The queue records which frames need updating
34 // Frame consumer is expected to never hold more than kQueueLength frames
36 // to capture a new frame (i.e. before MoveToNextFrame() is called).
42 // Moves to the next frame in the queue, moving the 'current' frame to become
46 // Replaces the current frame with a new one allocated by the caller. Th
    [all...]
  /external/webrtc/webrtc/test/
frame_generator_capturer.cc 105 VideoFrame* frame = frame_generator_->NextFrame(); local
106 frame->set_ntp_time_ms(clock_->CurrentNtpInMilliseconds());
108 first_frame_capture_time_ = frame->ntp_time_ms();
110 input_->IncomingCapturedFrame(*frame);
  /external/webrtc/webrtc/test/gl/
gl_renderer.h 29 void RenderFrame(const webrtc::VideoFrame& frame,
  /external/webrtc/webrtc/voice_engine/
voe_external_media_impl.h 31 AudioFrame* frame) override;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/drm/
drm_sarea.h 58 /** SAREA frame */
74 struct drm_sarea_frame frame; /**< frame */ member in struct:drm_sarea
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cfi/
cfi-alpha-1.s 10 .frame $15,32,$26,0
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
cpu.h 86 #include <machine/frame.h>
138 #define CLKF_BASEPRI(frame) (0) /*XXX: CHECKME */
139 #define CLKF_INTR(frame) (curcpu()->ci_intrdepth)
  /external/fio/
ghelpers.c 10 GtkWidget *entry, *frame; local
12 frame = gtk_frame_new(label);
14 gtk_box_pack_start(GTK_BOX(box), frame, TRUE, TRUE, 3); local
15 gtk_container_add(GTK_CONTAINER(frame), entry);
22 GtkWidget *entry, *frame; local
24 frame = gtk_frame_new(label);
27 gtk_box_pack_start(GTK_BOX(box), frame, TRUE, TRUE, 3); local
28 gtk_container_add(GTK_CONTAINER(frame), entry);
61 GtkWidget *frame; local
63 frame = gtk_frame_new(label)
65 gtk_box_pack_start(GTK_BOX(box), frame, TRUE, TRUE, 3); local
    [all...]
  /external/google-breakpad/src/google_breakpad/processor/
source_line_resolver_base.h 87 virtual void FillSourceLineInfo(StackFrame *frame);
88 virtual WindowsFrameInfo *FindWindowsFrameInfo(const StackFrame *frame);
89 virtual CFIFrameInfo *FindCFIFrameInfo(const StackFrame *frame);
  /external/google-breakpad/src/processor/
basic_source_line_resolver_types.h 93 virtual void LookupAddress(StackFrame *frame) const;
100 virtual WindowsFrameInfo *FindWindowsFrameInfo(const StackFrame *frame) const;
106 virtual CFIFrameInfo *FindCFIFrameInfo(const StackFrame *frame) const;
136 // Parses a STACK WIN or STACK CFI frame info declaration, storing
source_line_resolver_base.cc 298 void SourceLineResolverBase::FillSourceLineInfo(StackFrame *frame) {
299 if (frame->module) {
300 ModuleMap::const_iterator it = modules_->find(frame->module->code_file());
302 it->second->LookupAddress(frame);
308 const StackFrame *frame) {
309 if (frame->module) {
310 ModuleMap::const_iterator it = modules_->find(frame->module->code_file());
312 return it->second->FindWindowsFrameInfo(frame);
319 const StackFrame *frame) {
320 if (frame->module)
    [all...]
source_line_resolver_base_types.h 136 virtual void LookupAddress(StackFrame *frame) const = 0;
144 FindWindowsFrameInfo(const StackFrame *frame) const = 0;
150 virtual CFIFrameInfo *FindCFIFrameInfo(const StackFrame *frame) const = 0;
  /external/libvpx/libvpx/test/
active_map_test.cc 38 if (video->frame() == 1) {
40 } else if (video->frame() == 3) {
61 } else if (video->frame() == 15) {
  /external/v8/src/debug/
debug-frames.h 18 FrameInspector(StandardFrame* frame, int inlined_jsframe_index,
39 void SetArgumentsFrame(StandardFrame* frame);
69 StandardFrame* frame);
70 // Advances the iterator to the frame that matches the index and returns the
71 // inlined frame index, or -1 if not found. Skips native JS functions.
74 // Helper functions for wrapping and unwrapping stack frame ids.
  /external/webrtc/talk/app/webrtc/objc/
RTCNSGLVideoView.m 40 // |i420Frame| is set when we receive a frame from a worker thread and is read
72 NSRect frame = [self frame];
74 glViewport(0, 0, frame.size.width, frame.size.height);
112 - (void)renderFrame:(RTCI420Frame*)frame {
113 self.i420Frame = frame;
  /external/webrtc/talk/media/webrtc/
webrtcvideocapturer.h 83 // Callback when a frame is captured by camera.
85 const webrtc::VideoFrame& frame);
95 void SignalFrameCapturedOnStartThread(const webrtc::VideoFrame& frame);
108 WebRtcCapturedFrame(const webrtc::VideoFrame& frame,
  /external/webrtc/webrtc/api/objc/
RTCNSGLVideoView.m 19 // |videoFrame| is set when we receive a frame from a worker thread and is read
55 NSRect frame = [self frame];
57 glViewport(0, 0, frame.size.width, frame.size.height);
95 - (void)renderFrame:(RTCVideoFrame *)frame {
96 self.videoFrame = frame;

Completed in 579 milliseconds

<<11121314151617181920>>