HomeSort by relevance Sort by last modified time
    Searched refs:video (Results 101 - 125 of 267) sorted by null

1 2 3 45 6 7 8 91011

  /external/libvpx/libvpx/test/
resize_test.cc 87 ResizingVideoSource video; local
88 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
decode_test_driver.h 38 // Provides a simplified interface to manage one video decoding.
83 virtual void RunLoop(CompressedVideoSource *video);
  /external/qemu/distrib/sdl-1.2.15/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);
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowPresenter.java 219 * @param video
222 protected void presentVideo(SlideViewInterface view, VideoModel video,
225 view.setVideo(video.getSrc(), video.getUri());
235 view.setVideoVisibility(video.isVisible());
237 MediaAction action = video.getCurrentAction();
245 view.seekVideo(video.getSeekTo());
SlideshowEditor.java 175 VideoModel video = new VideoModel(mContext, newVideo, local
178 slide.add(video);
179 slide.updateDuration(video.getDuration());
MmsThumbnailPresenter.java 74 // Right now we're only handling image and video loaded callbacks.
89 private void presentVideoThumbnail(SlideViewInterface view, VideoModel video) {
90 mItemLoadedFuture = video.loadThumbnailBitmap(mImageLoadedCallback);
SlideshowAttachmentView.java 103 public void setVideo(String name, Uri video) {
106 mp.setDataSource(mContext, 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);
113 // Assume this is a corrupt video file.
  /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 ALOGI("Video encoder has returned all buffers");
368 ALOGI("Sending pthread signal that video encoder has returned all buffers to app");
    [all...]
OMX_VideoEncoder.c 386 pComponentPrivate->cComponentName = "OMX.TI.Video.encoder";
626 pPortDef->format.video.cMIMEType = "yuv";
627 pPortDef->format.video.pNativeRender = NULL;
628 pPortDef->format.video.nFrameWidth = 176;
629 pPortDef->format.video.nFrameHeight = 144;
630 pPortDef->format.video.nStride = -1;
631 pPortDef->format.video.nSliceHeight = -1;
632 pPortDef->format.video.xFramerate = fToQ16(15.0);
633 pPortDef->format.video.bFlagErrorConcealment = OMX_FALSE;
634 pPortDef->format.video.eCompressionFormat = OMX_VIDEO_CodingUnused
    [all...]
  /frameworks/av/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...]
bitstream_io.h 49 Void BitstreamSetOverrunBuffer(BitstreamEncVideo *stream, UChar *overrunBuffer, Int oBSize, VideoEncData *video);
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
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...]
  /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 ALOGI("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...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/
Exynos_OMX_VdecControl.c     [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
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.15/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);
371 SDL_VideoDevice *video = current_video; local
374 /* Get events from the video subsystem */
375 if ( video ) {
376 video->PumpEvents(this);
  /packages/apps/LegacyCamera/src/com/android/camera/
Thumbnail.java 30 import android.provider.MediaStore.Video;
31 import android.provider.MediaStore.Video.VideoColumns;
157 Media video = getLastVideoThumbnail(resolver); local
158 if (image == null && video == null) return null;
162 // If there is only image or video, get its thumbnail. If both exist,
164 if (image != null && (video == null || image.dateTaken >= video.dateTaken)) {
169 bitmap = Video.Thumbnails.getThumbnail(resolver, video.id,
170 Video.Thumbnails.MINI_KIND, null)
    [all...]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_video_dec/src/
omx_proxy_videodec.c 67 #define COMPONENT_NAME "OMX.TI.DUCATI1.VIDEO.DECODER"
71 //Define port indices in video decoder proxy
352 if(pPortDef->format.video.eColorFormat == OMX_COLOR_FormatYUV420PackedSemiPlanar)
356 pPortDef->format.video.eColorFormat = HAL_NV12_PADDED_PIXEL_FORMAT;
360 pPortDef->format.video.eColorFormat = OMX_TI_COLOR_FormatYUV420PackedSemiPlanar;
415 if(pPortDef->format.video.eColorFormat == OMX_TI_COLOR_FormatYUV420PackedSemiPlanar
416 || pPortDef->format.video.eColorFormat == HAL_NV12_PADDED_PIXEL_FORMAT)
418 pPortDef->format.video.eColorFormat = OMX_COLOR_FormatYUV420PackedSemiPlanar;
568 if (sPortDef.eDomain == OMX_PortDomainVideo && sPortDef.format.video.eCompressionFormat == OMX_VIDEO_CodingUnused)
572 sPortDef.format.video.nStride = LINUX_PAGE_SIZE
    [all...]
  /external/qemu/distrib/sdl-1.2.15/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
224 /* Set up the new video mode rectangle */
379 GAPIVID_DRIVER_NAME, "WinCE GAPI video driver",
621 SDL_Surface *video; local
634 video = current;
667 video = SDL_CreateRGBSurface(SDL_SWSURFACE,
669 if ( video == NULL ) {
677 video->flags = SDL_FULLSCREEN; /* Clear flags, GAPI supports fullscreen only */
690 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_encode/test/
VideoEncTest.c 226 OMX_STRING StrVideoEncoder= "OMX.TI.Video.encoder";
640 /* Input video frame format: YUV422 interleaved (1) or YUV420 (0) */
815 pAppData->pInPortDef->format.video.cMIMEType = "yuv";
816 pAppData->pInPortDef->format.video.pNativeRender = NULL;
817 pAppData->pInPortDef->format.video.nStride = -1;
818 pAppData->pInPortDef->format.video.nSliceHeight = -1;
819 pAppData->pInPortDef->format.video.xFramerate = fToQ16(pAppData->nFramerate);
820 pAppData->pInPortDef->format.video.bFlagErrorConcealment = OMX_FALSE;
821 pAppData->pInPortDef->format.video.eColorFormat = pAppData->eColorFormat;
822 pAppData->pInPortDef->format.video.nFrameWidth = pAppData->nWidth
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/h264/
Exynos_OMX_H264dec.c 630 bufferConf.nSizeImage = pExynosInputPort->portDefinition.format.video.nFrameWidth
631 * pExynosInputPort->portDefinition.format.video.nFrameHeight * 3 / 2;
739 if ((pExynosInputPort->portDefinition.format.video.nFrameWidth != pH264Dec->hMFCH264Handle.codecOutbufConf.nFrameWidth) ||
740 (pExynosInputPort->portDefinition.format.video.nFrameHeight != pH264Dec->hMFCH264Handle.codecOutbufConf.nFrameHeight)) {
741 pExynosInputPort->portDefinition.format.video.nFrameWidth = pH264Dec->hMFCH264Handle.codecOutbufConf.nFrameWidth;
742 pExynosInputPort->portDefinition.format.video.nFrameHeight = pH264Dec->hMFCH264Handle.codecOutbufConf.nFrameHeight;
743 pExynosInputPort->portDefinition.format.video.nStride = ((pH264Dec->hMFCH264Handle.codecOutbufConf.nFrameWidth + 15) & (~15));
744 pExynosInputPort->portDefinition.format.video.nSliceHeight = ((pH264Dec->hMFCH264Handle.codecOutbufConf.nFrameHeight + 15) & (~15));
759 if ((pExynosInputPort->portDefinition.format.video.nFrameWidth != pH264Dec->hMFCH264Handle.codecOutbufConf.nFrameWidth) ||
760 (pExynosInputPort->portDefinition.format.video.nFrameHeight != pH264Dec->hMFCH264Handle.codecOutbufConf.nFrameHeight) |
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/mpeg4/
Exynos_OMX_Mpeg4dec.c 738 bufferConf.nSizeImage = pExynosInputPort->portDefinition.format.video.nFrameWidth
739 * pExynosInputPort->portDefinition.format.video.nFrameHeight * 3 / 2;
837 if ((pExynosInputPort->portDefinition.format.video.nFrameWidth != pMpeg4Dec->hMFCMpeg4Handle.codecOutbufConf.nFrameWidth) ||
838 (pExynosInputPort->portDefinition.format.video.nFrameHeight != pMpeg4Dec->hMFCMpeg4Handle.codecOutbufConf.nFrameHeight)) {
839 pExynosInputPort->portDefinition.format.video.nFrameWidth = pMpeg4Dec->hMFCMpeg4Handle.codecOutbufConf.nFrameWidth;
840 pExynosInputPort->portDefinition.format.video.nFrameHeight = pMpeg4Dec->hMFCMpeg4Handle.codecOutbufConf.nFrameHeight;
841 pExynosInputPort->portDefinition.format.video.nStride = ((pMpeg4Dec->hMFCMpeg4Handle.codecOutbufConf.nFrameWidth + 15) & (~15));
842 pExynosInputPort->portDefinition.format.video.nSliceHeight = ((pMpeg4Dec->hMFCMpeg4Handle.codecOutbufConf.nFrameHeight + 15) & (~15));
857 if ((pExynosInputPort->portDefinition.format.video.nFrameWidth != pMpeg4Dec->hMFCMpeg4Handle.codecOutbufConf.nFrameWidth) ||
858 (pExynosInputPort->portDefinition.format.video.nFrameHeight != pMpeg4Dec->hMFCMpeg4Handle.codecOutbufConf.nFrameHeight) |
    [all...]

Completed in 1564 milliseconds

1 2 3 45 6 7 8 91011