/external/grub/docs/ |
kernel.c | 32 /* The video memory address. */ 33 #define VIDEO 0xB8000 40 /* Point to the video memory. */ 41 static volatile unsigned char *video; variable 155 /* Clear the screen and initialize VIDEO, XPOS and YPOS. */ 161 video = (unsigned char *) VIDEO; 164 *(video + i) = 0; 230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF; 231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE [all...] |
kernel.c.texi | 32 /* @r{The video memory address.} */ 33 #define VIDEO 0xB8000 40 /* @r{Point to the video memory.} */ 41 static volatile unsigned char *video; 155 /* @r{Clear the screen and initialize VIDEO, XPOS and YPOS.} */ 161 video = (unsigned char *) VIDEO; 164 *(video + i) = 0; 230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF; 231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE [all...] |
/frameworks/base/media/libstagefright/codecs/avc/enc/src/ |
residual.cpp | 23 AVCCommonObj *video = encvid->common; local 26 int x_position = (video->mb_x << 4); 27 int y_position = (video->mb_y << 4); 44 pDst = video->currPic->Sl + offset1; 45 offset = video->PicWidthInSamplesL - 16; 77 pDst = video->currPic->Scb + ((offset1 + x_position) >> 2); 111 pDst = video->currPic->Scr + ((offset1 + x_position) >> 2); 148 AVCCommonObj *video = encvid->common; local 241 nC = predict_nnz(video, bindx & 3, bindx >> 2); 245 nC = predict_nnz_chroma(video, bindx & 3, bindx >> 2) [all...] |
block.cpp | 79 AVCCommonObj *video = encvid->common; local 81 int pitch = video->currPic->pitch; 82 int16 *coef = video->block; 83 uint8 *pred = video->pred_block; // size 16 for a 4x4 block 84 int pred_pitch = video->pred_pitch; 145 Rq = video->QPy_mod_6; 146 Qq = video->QPy_div_6; 192 if (video->currMB->mb_intra) // only do inverse transform with intra block 260 void MBInterIdct(AVCCommonObj *video, uint8 *curL, AVCMacroblock *currMB, int picPitch) 262 int16 *coef, *coef8 = video->block 362 AVCCommonObj *video = encvid->common; local 724 AVCCommonObj *video = encvid->common; local 1116 AVCCommonObj *video = encvid->common; local 1209 AVCCommonObj *video = encvid->common; local [all...] |
motion_est.cpp | 236 /* if turns out to be IDR frame, set video->nal_unit_type to AVC_NALTYPE_IDR */ 239 AVCCommonObj *video = encvid->common; local 240 int slice_type = video->slice_type; 242 AVCPictureData *refPic = video->RefPicList0[0]; 244 int mbwidth = video->PicWidthInMbs; 245 int mbheight = video->PicHeightInMbs; 246 int totalMB = video->PicSizeInMbs; 248 AVCMacroblock *currMB, *mblock = video->mblock; 312 InitHTFM(video, &htfm_stat, newvar, &collect); 317 && ((rateCtrl->frame_rate < 5.0) || (video->sliceHdr->frame_num > MIN_GOP)) 603 AVCCommonObj *video = encvid->common; local 744 AVCCommonObj *video = encvid->common; local 841 AVCCommonObj *video = encvid->common; local 958 AVCCommonObj *video = encvid->common; local 1359 AVCCommonObj *video = encvid->common; local [all...] |
/device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/dec/ |
SEC_OMX_Vdec.c | 51 if ((secOutputPort->portDefinition.format.video.nFrameWidth != 52 secInputPort->portDefinition.format.video.nFrameWidth) || 53 (secOutputPort->portDefinition.format.video.nFrameHeight != 54 secInputPort->portDefinition.format.video.nFrameHeight)) { 57 secOutputPort->portDefinition.format.video.nFrameWidth = 58 secInputPort->portDefinition.format.video.nFrameWidth; 59 secOutputPort->portDefinition.format.video.nFrameHeight = 60 secInputPort->portDefinition.format.video.nFrameHeight; 61 width = secOutputPort->portDefinition.format.video.nStride = 62 secInputPort->portDefinition.format.video.nStride [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
post_filter.cpp | 32 VideoDecData *video, 42 int nTotalMB = video->nTotalMB; 46 uint8 *decodedFrame = video->videoDecControls->outputFrame; 50 width = video->width; 51 height = video->height; 62 if (PVGetDecBitrate(video->videoDecControls) > (100*video->frameRate*(size >> 12))) // MC_sofDeblock 68 QP_store = video->QPMB; 71 pp_mod = video->pstprcTypCur; 163 pp_mod = video->pstprcTypCur [all...] |
vlc_decode.cpp | 20 * MPEG-4 Simple Profile Video Decoder * 28 * in the course of development of the MPEG-4 Video (ISO/IEC 14496-2) standard. 30 * Video (ISO/IEC 14496-2) tools as specified by the MPEG-4 Video (ISO/IEC 33 * ISO/IEC gives users of the MPEG-4 Video (ISO/IEC 14496-2) standard free 35 * or software products claiming conformance to the MPEG-4 Video (ISO/IEC 43 * not released for non MPEG-4 Video (ISO/IEC 14496-2) Standard conforming 48 * parties from using the code for non MPEG-4 Video (ISO/IEC 14496-2) Standard 132 PV_STATUS PV_GetMBvectors(VideoDecData *video, uint mode) 135 BitstreamDecVideo *stream = video->bitstream [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/ |
SDL_dx5video.c | 58 /* DirectX function pointers for video and events */ 746 error = "Out of video memory"; 880 /* Find out how much video memory is available */ 979 /* Fill in the video hardware capabilities */ 1020 SDL_Surface *video; local [all...] |
/device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/dec/mpeg4dec/ |
SEC_OMX_Mpeg4dec.c | 554 pSECComponent->pSECPort[INPUT_PORT_INDEX].portDefinition.format.video.eCompressionFormat = OMX_VIDEO_CodingMPEG4; 557 pSECComponent->pSECPort[INPUT_PORT_INDEX].portDefinition.format.video.eCompressionFormat = OMX_VIDEO_CodingH263; 596 width = ((pSECPort->portDefinition.format.video.nFrameWidth + 15) & (~15)); 597 height = ((pSECPort->portDefinition.format.video.nFrameHeight + 15) & (~15)); 599 pSECPort->portDefinition.format.video.nStride = width; 600 pSECPort->portDefinition.format.video.nSliceHeight = height; 605 pSECOutputPort->portDefinition.format.video.nFrameWidth = pSECPort->portDefinition.format.video.nFrameWidth; 606 pSECOutputPort->portDefinition.format.video.nFrameHeight = pSECPort->portDefinition.format.video.nFrameHeight [all...] |
/device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/dec/h264dec/ |
SEC_OMX_H264dec.c | 400 pSECComponent->pSECPort[INPUT_PORT_INDEX].portDefinition.format.video.eCompressionFormat = OMX_VIDEO_CodingAVC; 438 width = ((pSECPort->portDefinition.format.video.nFrameWidth + 15) & (~15)); 439 height = ((pSECPort->portDefinition.format.video.nFrameHeight + 15) & (~15)); 441 pSECPort->portDefinition.format.video.nStride = width; 442 pSECPort->portDefinition.format.video.nSliceHeight = height; 447 pSECOutputPort->portDefinition.format.video.nFrameWidth = pSECPort->portDefinition.format.video.nFrameWidth; 448 pSECOutputPort->portDefinition.format.video.nFrameHeight = pSECPort->portDefinition.format.video.nFrameHeight; 449 pSECOutputPort->portDefinition.format.video.nStride = width [all...] |
/external/quake/quake/src/WinQuake/ |
wq.bat | 13 echo wq fastvid: maximum video speed, but safer, probably slower sound
14 echo wq fastsnd: maximum sound speed, but safer, probably slower video
|
/external/webkit/Source/WebCore/platform/graphics/gstreamer/ |
VideoSinkGStreamer.h | 26 #include <gst/video/gstvideosink.h>
|
/frameworks/base/data/videos/ |
VideoPackage1.mk | 20 TARGET_PATH := system/media/video
|
VideoPackage2.mk | 20 TARGET_PATH := system/media/video
|
/packages/apps/Mms/src/com/android/mms/ui/ |
SlideViewInterface.java | 33 void setVideo(String name, Uri video);
|
VideoAttachmentView.java | 36 * This class provides an embedded editor/viewer of video attachment. 89 public void setVideo(String name, Uri video) { 91 Bitmap bitmap = createVideoThumbnail(mContext, video); 109 // Assume this is a corrupt video file.
|
/external/qemu/distrib/sdl-1.2.12/src/events/ |
SDL_events.c | 102 SDL_VideoDevice *video = current_video; local 105 /* Get events from the video subsystem */ 106 if ( video ) { 107 video->PumpEvents(this); 369 SDL_VideoDevice *video = current_video; local 372 /* Get events from the video subsystem */ 373 if ( video ) { 374 video->PumpEvents(this);
|
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_surface.c | 41 SDL_VideoDevice *video = current_video; local 53 /* Check to see if we desire the surface in video memory */ 54 if ( video ) { 85 if ((Amask) && (video->displayformatalphapixel)) 87 depth = video->displayformatalphapixel->BitsPerPixel; 88 Rmask = video->displayformatalphapixel->Rmask; 89 Gmask = video->displayformatalphapixel->Gmask; 90 Bmask = video->displayformatalphapixel->Bmask; 91 Amask = video->displayformatalphapixel->Amask; 124 (video->AllocHWSurface(this, surface) < 0) ) 200 SDL_VideoDevice *video = current_video; local 251 SDL_VideoDevice *video = current_video; local 555 SDL_VideoDevice *video = current_video; local 741 SDL_VideoDevice *video = current_video; local 776 SDL_VideoDevice *video = current_video; local 929 SDL_VideoDevice *video = current_video; local [all...] |
SDL_yuv.c | 24 /* This is the implementation of the YUV video surface support */ 35 SDL_VideoDevice *video = current_video; local 45 /* Display directly on video surface, if possible */ 55 if ( ((display == SDL_VideoSurface) && video->CreateYUVOverlay) && 57 overlay = video->CreateYUVOverlay(this, w, h, format, display);
|
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/ |
OMX_VideoEnc_Utils.c | 338 * @param pComponentPrivate pointer to the private video encoder structure 352 LOGI("Video encoder has returned all buffers"); 368 LOGI("Sending pthread signal that video encoder has returned all buffers to app"); [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/ |
bitstream_io.cpp | 45 /* Purpose : Create a bitstream to hold one encoded video packet or frame */ 320 /* Purpose : bit stuffing for next start code in short video header */ 776 Void BitstreamSetOverrunBuffer(BitstreamEncVideo* stream, UChar* overrunBuffer, Int oBSize, VideoEncData *video) 780 stream->video = video; 789 VideoEncData *video = stream->video; local 801 if (video->overrunBuffer) 803 M4VENC_FREE(video->overrunBuffer); 805 video->oBSize = stream->oBSize [all...] |
/device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/enc/mpeg4enc/ |
SEC_OMX_Mpeg4enc.c | 192 pMpeg4Param->SourceWidth = pSECOutputPort->portDefinition.format.video.nFrameWidth; 193 pMpeg4Param->SourceHeight = pSECOutputPort->portDefinition.format.video.nFrameHeight; 198 pMpeg4Param->Bitrate = pSECOutputPort->portDefinition.format.video.nBitrate; 212 pMpeg4Param->TimeIncreamentRes = (pSECInputPort->portDefinition.format.video.xFramerate) >> 16; 218 switch ((SEC_OMX_COLOR_FORMATTYPE)pSECInputPort->portDefinition.format.video.eColorFormat) { 242 SEC_OSAL_Log(SEC_LOG_TRACE, "Video Encode VBR"); 248 SEC_OSAL_Log(SEC_LOG_TRACE, "Video Encode CBR"); 255 SEC_OSAL_Log(SEC_LOG_TRACE, "Video Encode VBR"); 276 pH263Param->SourceWidth = pSECOutputPort->portDefinition.format.video.nFrameWidth; 277 pH263Param->SourceHeight = pSECOutputPort->portDefinition.format.video.nFrameHeight [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/gapi/ |
SDL_gapivideo.c | 24 /* Pocket PC GAPI SDL video driver implementation; 41 // wince goes to portrait mode, but does not update video memory 207 /* Set up the new video mode rectangle */ 351 GAPIVID_DRIVER_NAME, "WinCE GAPI video driver", 591 SDL_Surface *video; local 604 video = current; 637 video = SDL_CreateRGBSurface(SDL_SWSURFACE, 639 if ( video == NULL ) { 646 video->flags = SDL_FULLSCREEN; /* Clear flags, GAPI supports fullscreen only */ 659 SDL_SetError("Couldn't get address of video memory, may be unsupported device or bug") [all...] |
/hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/ |
OMX_VideoDecoder.c | 31 * This file implements OMX Component for video decoder that 106 OMX_STRING cVideoDecodeName = "OMX.TI.Video.Decoder"; 285 LOGI("TI Video Decoder \n"); 571 if (pComponentPrivate->pInPortDef->format.video.eCompressionFormat == OMX_VIDEO_CodingAVC) { 574 else if (pComponentPrivate->pInPortDef->format.video.eCompressionFormat == OMX_VIDEO_CodingWMV) { 577 else if ((pComponentPrivate->pInPortDef->format.video.eCompressionFormat == OMX_VIDEO_CodingMPEG4) || 578 (pComponentPrivate->pInPortDef->format.video.eCompressionFormat == OMX_VIDEO_CodingH263)) { 581 else if (pComponentPrivate->pInPortDef->format.video.eCompressionFormat == OMX_VIDEO_CodingMPEG2) { [all...] |