/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/ |
amrencode.cpp | 53 frame bytes. 141 speech_encoder_state = pointer to encoder frame structure 277 speech_encoder_state = pointer to encoder frame structure 390 speech_encoder_state = pointer to encoder frame structure 496 p3gpp_frame_type = pointer to the 3GPP frame type (enum Frame_Type_3GPP) 502 p3gpp_frame_type store contains the new 3GPP frame type 509 WmfEncBytesPerFrame = table containing the number of encoder frame 512 If2EncBytesPerFrame = table containing the number of encoder frame 525 data. This functions calls GSMEncodeFrame to encode one frame's worth of 528 the transmit frame type. If the transmit frame type is TX_SPEECH_GOOD o [all...] |
/ndk/samples/san-angeles/jni/ |
app-android.c | 89 /* Call to render the next GL frame */ 95 /* NOTE: if sDemoStopped is TRUE, then we re-render the same frame
|
/system/wlan/ti/wilink_6_1/stad/src/AirLink_Managment/ |
measurementMgr.h | 116 /* Report Frame Params */ 125 /* Request Frame Params */
|
/external/opencore/fileformats/mp3/parser/src/ |
mp3parser.cpp | 48 // frame is found 87 * MP3 Frame Header Constants 89 // MP3 Frame Header Format 143 * End MP3 Frame Header Constants 192 * FrameRate Index Table 10 * sample rate / samples per frame 207 * Samples Per Frame Index Table 463 // Position the File Pointer at the first Audio Frame 466 // This is the position of the first MP3 Frame in the File 541 //VBRI header exist exactly 32 bytes after first frame header 644 // Calculate the sampling rate and samples per frame 1294 PvmiKvpSharedPtrVector frame; local [all...] |
/external/opencore/android/author/ |
android_camera_input.cpp | 428 // Note for low frame rate, we don't bother to log view finder freezes 431 LOGW("Frame %p takes too long (%d ms) to process, staring at %d", data.iFrameBuffer.get(), processingTimeInMs, iAudioFirstFrameTs); 737 // dequeue frame buffers and write to peer 764 //FIXME resend the frame later if ( OsclErrBusy == error) 938 LOGE("Mismatch between the intended frame size (%dx%d) and the available frame size (%dx%d)", mFrameWidth, mFrameHeight, width, height); [all...] |
/external/v8/src/ia32/ |
codegen-ia32.h | 48 // reference on the virtual frame. The reference may be consumed 127 // invalid virtual frame. 317 VirtualFrame* frame() const { return frame_; } function in class:v8::internal::CodeGenerator 322 // Set the virtual frame to be new_frame, with non-frame register 323 // reference counts given by non_frame_registers. The non-frame 324 // register reference counts of the old frame are returned in 367 // Visit a statement and then spill the virtual frame if control flow can 373 // Visit a list of statements and then spill the virtual frame if control 417 // Generate code to push the value of an expression on top of the frame [all...] |
/system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/AirLink/Measurement/ |
measurementMgr.c | 426 WLAN_OS_REPORT(("current Frame Type: %d\n", pMeasurementMgr->currentFrameType)); 622 * Called when a frame with type measurement request is received. 625 * @param frameType The frame type. 626 * @param dataLen The length of the frame. 627 * @param pData A pointer to the frame's content. 638 measurement_frameRequest_t * frame = &(pMeasurementMgr->newFrameRequest); local 649 ("%s: Broadcast/Multicast measurement frame has been ignored\n", __FUNCTION__)); 658 ("%s: Broadcast measurement frame has been ignored\n", __FUNCTION__)); 664 ("%s: Measurement frame received\n", __FUNCTION__)); 666 /* Parsing the Frame Request Header * [all...] |
/external/webkit/WebCore/page/ |
FrameView.cpp | 38 #include "Frame.h" 116 FrameView::FrameView(Frame* frame) 117 : m_frame(frame) 140 PassRefPtr<FrameView> FrameView::create(Frame* frame) 142 RefPtr<FrameView> view = adoptRef(new FrameView(frame)); 147 PassRefPtr<FrameView> FrameView::create(Frame* frame, const IntSize& initialSize) 149 RefPtr<FrameView> view = adoptRef(new FrameView(frame)); [all...] |
/hardware/msm7k/libcamera/ |
QualcommCameraHardware.cpp | 182 camera_frame_type *frame, 490 snprintf(buffer, 255, "preview frame size(%d), raw size (%d), jpeg size (%d) and jpeg max size (%d)\n", mPreviewFrameSize, mRawSize, mJpegSize, mJpegMaxSize); 741 // hack to prevent first preview frame from being black [all...] |
/external/kernel-headers/original/linux/ |
videodev2.h | 82 #define VID_TYPE_OVERLAY 8 /* Overlay onto frame buffer */ 85 #define VID_TYPE_FRAMERAM 64 /* Uses the frame buffer memory */ 366 /* Experimental Frame Size and frame rate enumeration */ 377 __u32 width; /* Frame width [pixel] */ 378 __u32 height; /* Frame height [pixel] */ 382 __u32 min_width; /* Minimum frame width [pixel] */ 383 __u32 max_width; /* Maximum frame width [pixel] */ 384 __u32 step_width; /* Frame width step size [pixel] */ 385 __u32 min_height; /* Minimum frame height [pixel] * [all...] |
/development/pdk/docs/porting/ |
display_drivers.jd | 21 <p>Android relies on the standard frame buffer device (<code>/dev/fb0</code> or <code>/dev/graphics/fb0</code>) and driver as described in the <code>linux/fb.h</code> kernel header file. For more information regarding the standard Linux frame buffer, please see <a href="http://git.kernel.org/?p=linux/kernel/git/stable/linux-2.6.24.y.git;a=blob;f=Documentation/fb/framebuffer.txt">The Frame Buffer Device</a> at <a href="http://kernel.org">http://kernel.org</a>. 29 <p>Android makes two requirements of the driver: a linear address space of mappable memory that it can write to directly and support for the rgb_565 pixel format. A typical frame display includes:</p> 35 <p>When a page flip is required, Android makes another <code>FBIOPUT_VSCREENINFO</code> ioctl call with a new y-offset pointing to the other buffer in video memory. This ioctl, in turn, invokes the driver's <code>.fb_pan_display</code> function in order to do the actual flip. If there isn't sufficient video memory, regular memory is used and is just copied into the video memory when it is time do the flip. After allocating the video memory and setting the pixel format, Android uses <code>mmap()</code> to map the memory into the process's address space. All writes to the frame buffer are done through this mmaped memory.</p> 36 <p>To maintain adequate performance, framebuffer memory should be cacheable. If you use write-back, flush the cache before the frame buffer is written from DMA to the LCD. If that isn't possible, you may use write-through. As a last resort, you can also use uncached memory with the write-bugger enabled, but performance will suffer.</p> 55 * ANDROID PORTING GUIDE: FRAME BUFFER DRIVER TEMPLATE 57 * This template is designed to provide the minimum frame buffer 204 /* Set the frame buffer base to something like: 344 <p>Both problems are caused by an incorrect implementation of the frame buffer's page flipping. Key events are captured, but the graphical interface appears to drop every (…) [all...] |
/external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/ |
decoder_amr_wb.cpp | 208 Execute decoder object. Read one encoded speech frame from the input 209 stream, decode it and write the decoded frame to output stream. 243 /* if homed: check if this frame is another homing frame */ 252 /* produce encoder homing frame if homed & input=decoder homing frame */ 279 /* if not homed: check whether current frame is a homing frame */ 282 /* check whole frame */ 286 /* reset decoder if current frame is a homing frame * [all...] |
/external/quake/quake/src/QW/client/ |
cl_cam.c | 318 frame_t *frame; local 340 frame = &cl.frames[cls.netchan.incoming_sequence & UPDATE_MASK]; 341 player = frame->playerstate + spec_track; 342 self = frame->playerstate + cl.playernum; 437 frame_t *frame; 444 frame = &cl.frames[cls.netchan.incoming_sequence & UPDATE_MASK]; 445 player = frame->playerstate + spec_track; 446 self = frame->playerstate + cl.playernum; 479 frame = &cl.frames[cls.netchan.incoming_sequence & UPDATE_MASK]; 480 player = frame->playerstate + spec_track [all...] |
r_sprite.c | 240 int i, numframes, frame; local 243 frame = currententity->frame; 245 if ((frame >= psprite->numframes) || (frame < 0)) 247 Con_Printf ("R_DrawSprite: no such frame %d\n", frame); 248 frame = 0; 251 if (psprite->frames[frame].type == SPR_SINGLE) 253 pspriteframe = psprite->frames[frame].frameptr [all...] |
/external/quake/quake/src/QW/server/ |
sv_ents.c | 186 if ( to->frame != from->frame ) 221 MSG_WriteByte (msg, to->frame); 259 // this is the frame that we are going to delta update from 391 MSG_WriteByte (msg, ent->v.frame); 455 client_frame_t *frame; local 458 // this is the frame we are creating 459 frame = &client->frames[client->netchan.incoming_sequence & UPDATE_MASK]; 470 pack = &frame->entities; 504 state->frame = ent->v.frame [all...] |
/external/quake/quake/src/WinQuake/ |
r_sprite.cpp | 240 int i, numframes, frame;
local 243 frame = currententity->frame;
245 if ((frame >= psprite->numframes) || (frame < 0))
247 Con_Printf ("R_DrawSprite: no such frame %d\n", frame);
248 frame = 0;
251 if (psprite->frames[frame].type == SPR_SINGLE)
253 pspriteframe = psprite->frames[frame].frameptr; [all...] |
/external/v8/src/ |
top.h | 101 Address c_entry_fp_; // the frame pointer of the top c entry frame 104 Address js_entry_sp_; // the stack pointer of the bottom js entry frame 338 // is, the global context of the top-most JavaScript frame. 403 // If there is no JS frame under the current C frame, use the value 0. 405 js_sp_ = it.done() ? 0 : it.frame()->sp(); 416 // Returns true if this save context is below a given JavaScript frame. 417 bool below(JavaScriptFrame* frame) { 418 return (js_sp_ == 0) || (frame->sp() < js_sp_) [all...] |
/external/webkit/WebCore/html/ |
HTMLAnchorElement.cpp | 29 #include "Frame.h" 99 if (!document()->frame()) 102 if (!document()->frame()->eventHandler()->tabsToLinks(event)) 215 if (!evt->defaultPrevented() && document()->frame()) 216 document()->frame()->loader()->urlSelected(document()->completeURL(url), getAttribute(targetAttr), evt, false, false, true, hasRel(RelationNoReferrer) ? NoReferrer : SendReferrer); 222 if (evt->type() == eventNames().mousedownEvent && evt->isMouseEvent() && static_cast<MouseEvent*>(evt)->button() != RightButton && document()->frame() && document()->frame()->selection()) { 225 m_rootEditableElementForSelectionOnMouseDown = document()->frame()->selection()->rootEditableElement(); 257 if (down && document()->frame() && document()->frame()->selection() & [all...] |
/external/webkit/WebCore/loader/ |
MainResourceLoader.cpp | 36 #include "Frame.h" 52 MainResourceLoader::MainResourceLoader(Frame* frame) 53 : ResourceLoader(frame, true, true) 64 PassRefPtr<MainResourceLoader> MainResourceLoader::create(Frame* frame) 66 return adoptRef(new MainResourceLoader(frame)); 73 RefPtr<Frame> protectFrame(m_frame); 162 // URL of the main frame which doesn't change when we redirect. 178 Frame* top = m_frame->tree()->top() [all...] |
/external/webkit/WebCore/platform/graphics/gtk/ |
WebKitWebSourceGStreamer.cpp | 60 RefPtr<WebCore::Frame> frame; member in struct:_WebKitWebSrcPrivate 309 if (priv->frame) 310 priv->frame.release(); 370 if (priv->frame) { 371 Document* document = priv->frame->document(); 375 FrameLoader* loader = priv->frame->loader(); 590 void webKitWebSrcSetFrame(WebKitWebSrc* src, WebCore::Frame* frame) 594 priv->frame = frame [all...] |
/external/webkit/WebCore/rendering/ |
RenderSlider.cpp | 29 #include "Frame.h" 166 if (document()->frame() && renderer()) { 181 document()->frame()->eventHandler()->setCapturingMouseEventsNode(m_shadowParent); 188 if (Frame* frame = document()->frame()) 189 frame->eventHandler()->setCapturingMouseEventsNode(0); 213 if (Frame* frame = document()->frame()) [all...] |
RootInlineBox.cpp | 28 #include "Frame.h" 129 Frame* frame = renderer()->document()->frame(); local 130 if (!frame) 132 Page* page = frame->page(); 148 Frame* frame = renderer()->document()->frame(); 149 if (!frame) [all...] |
/external/webkit/WebKit/wx/WebKitSupport/ |
FrameLoaderClientWx.cpp | 36 #include "Frame.h" 97 void FrameLoaderClientWx::setFrame(wxWebFrame *frame) 99 m_webFrame = frame; 100 m_frame = m_webFrame->m_impl->frame; 751 Frame* FrameLoaderClientWx::dispatchCreatePage() 815 PassRefPtr<Frame> FrameLoaderClientWx::createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, 829 RefPtr<Frame> childFrame = adoptRef(newFrame->m_impl->frame); 831 // The creation of the frame may have run arbitrary JavaScript that removed it from the page already. 837 // The frame's onload handler may have removed it from the document [all...] |
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
perf | 8 cmd_VCrate="Video+Capture+Rate CAMT PERF.awk+who=CAMT+from=Hardware+what=frame+how=received" 9 cmd_VDrate="Video+Decode+Rate VD_T PERF.awk+who=VD_T+to=HLMM+what=frame+how=sending" 10 cmd_VDTrate="Video+Decode+Rate VD_T PERF.awk+who=VD_T+to=LLMM+what=frame+how=sending" 12 cmd_VERrate="Video+Encode+Input+Rate VE__ PERF.awk+who=VE__+from=HLMM+what=frame+how=received" 13 cmd_VPPYrate="Video+PreProc+YUV+Output+Rate VPPT PERF.awk+who=VPPT+to=HLMM+what=frame+how=sending" 14 cmd_VPPRrate="Video+PreProc+RGB+Output+Rate VPPT PERF.awk+who=VPPT+to=HLMM+what=frame+how=sending" 15 cmd_VPPIrate="Video+PreProc+Input+Rate VPP_ PERF.awk+who=VPP_+from=HLMM+what=frame+how=received" 16 cmd_VPrate="Video+Display+Rate VP_T PERF.awk+who=VP_T+to=Hardware+what=frame+how=sending" 17 cmd_VCPrate="Video+Preview+Rate VP_T PERF.awk+who=VP_T+to=Hardware+what=frame+how=sending" 262 MSG="RGB and YUV output frame sizes are identical. Printing multiples of the frame rates. [all...] |
/external/bluetooth/hcidump/parser/ |
capi.c | 232 static void profile(int level, struct frame *frm) 271 static void cmd_common(int level, uint8_t subcmd, struct frame *frm) 302 static void cmd_alert(int level, uint8_t subcmd, struct frame *frm) 318 static void cmd_connect(int level, uint8_t subcmd, struct frame *frm) 348 static void cmd_disconnect(int level, uint8_t subcmd, struct frame *frm) 371 static void cmd_connect_active(int level, uint8_t subcmd, struct frame *frm) 401 static void cmd_listen(int level, uint8_t subcmd, struct frame *frm) 443 static void cmd_info(int level, uint8_t subcmd, struct frame *frm) 484 static void cmd_interoperability(int level, uint8_t subcmd, struct frame *frm) 615 static void cmd_facility(int level, uint8_t subcmd, struct frame *frm [all...] |