HomeSort by relevance Sort by last modified time
    Searched defs:video (Results 26 - 50 of 55) sorted by null

12 3

  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.cpp 26 void calculateQuantizer_Multipass(void *video);
27 void updateRateControl(rateControl *rc, VideoEncData *video);
28 void updateRC_PostProc(rateControl *rc, VideoEncData *video);
33 PV_STATUS RC_Initialize(void *video);
35 PV_STATUS RC_VopQPSetting(VideoEncData *video,rateControl *rc[]);
36 PV_STATUS RC_VopUpdateStat(VideoEncData *video,rateControl *rc[]);
37 PV_STATUS RC_UpdateBuffer(VideoEncData *video, Int currLayer, Int num_skip);
38 Int RC_GetSkipNextFrame(VideoEncData *video,Int currLayer);
39 void RC_ResetSkipNextFrame(void *video,Int currLayer);
52 VideoEncData *video = (VideoEncData *) input local
418 VideoEncData *video = (VideoEncData *) input; local
531 VideoEncData *video = (VideoEncData *) input; local
701 VideoEncData *video = (VideoEncData *) input; local
    [all...]
mp4enc_api.cpp 131 Int DetermineCodingLayer(VideoEncData *video, Int *nLayer, ULong modTime);
132 void DetermineVopType(VideoEncData *video, Int currLayer);
133 Int UpdateSkipNextFrame(VideoEncData *video, ULong *modTime, Int *size, PV_STATUS status);
134 Bool SetProfile_BufferSize(VideoEncData *video, float delay, Int bInitialized);
193 VideoEncData *video; local
220 video = (VideoEncData *)M4VENC_MALLOC(sizeof(VideoEncData)); /* allocate memory for encData */
222 if (video == NULL)
225 M4VENC_MEMSET(video, 0, sizeof(VideoEncData));
227 encoderControl->videoEncoderData = (void *) video; /* set up pointer in VideoEncData structure */
229 video->encParams = (VideoEncParams *)M4VENC_MALLOC(sizeof(VideoEncParams))
1081 VideoEncData *video = (VideoEncData *)encoderControl->videoEncoderData; local
1327 VideoEncData *video = (VideoEncData *)encCtrl->videoEncoderData; local
1358 VideoEncData *video = (VideoEncData *)encCtrl->videoEncoderData; local
1651 VideoEncData *video = (VideoEncData *)encCtrl->videoEncoderData; local
1842 VideoEncData *video = (VideoEncData *)encCtrl->videoEncoderData; local
2048 VideoEncData* video; local
2405 VideoEncData *video = (VideoEncData *)encoderControl->videoEncoderData; local
2570 VideoEncData *video = (VideoEncData *)encoderControl->videoEncoderData; local
    [all...]
  /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_video.c 24 /* The high-level video driver subsystem */
34 /* Available video drivers */
143 * Initialize the video and event subsystems -- determine native pixel format
147 SDL_VideoDevice *video; local
168 /* Select the proper video driver */
170 video = NULL;
180 video = bootstrap[i]->create(index);
188 video = bootstrap[i]->create(index);
189 if ( video != NULL ) {
195 if ( video == NULL )
327 SDL_VideoDevice *video = current_video; local
573 SDL_VideoDevice *video, *this; local
1018 SDL_VideoDevice *video = current_video; local
1085 SDL_VideoDevice *video = current_video; local
1164 SDL_VideoDevice *video = current_video; local
1282 SDL_VideoDevice *video = current_video; local
1327 SDL_VideoDevice *video = current_video; local
1389 SDL_VideoDevice *video = current_video; local
1408 SDL_VideoDevice *video = current_video; local
1429 SDL_VideoDevice *video = current_video; local
1496 SDL_VideoDevice* video = current_video; local
1511 SDL_VideoDevice *video = current_video; local
1675 SDL_VideoDevice *video = current_video; local
1698 SDL_VideoDevice *video = current_video; local
1772 SDL_VideoDevice *video = current_video; local
1805 SDL_VideoDevice *video = current_video; local
1844 SDL_VideoDevice *video = current_video; local
1892 SDL_VideoDevice *video = current_video; local
1908 SDL_VideoDevice *video = current_video; local
1941 SDL_VideoDevice* video = current_video; local
1952 SDL_VideoDevice* video = current_video; local
1966 SDL_VideoDevice* video = current_video; local
1977 SDL_VideoDevice* video = current_video; local
1988 SDL_VideoDevice* video = current_video; local
2001 SDL_VideoDevice *video = current_video; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp 32 double ComputeFrameMAD(AVCCommonObj *video, AVCRateControl *rateCtrl);
34 void targetBitCalculation(AVCEncObject *encvid, AVCCommonObj *video, AVCRateControl *rateCtrl, MultiPass *pMP);
36 void calculateQuantizer_Multipass(AVCEncObject *encvid, AVCCommonObj *video,
52 AVCCommonObj *video = encvid->common; local
53 AVCSliceHeader *sliceHdr = video->sliceHdr;
74 video->nal_unit_type = AVC_NALTYPE_IDR;
76 video->slice_type = AVC_I_SLICE;
103 RCUpdateBuffer(video, rateCtrl, frameInc - rateCtrl->skip_next_frame); /* in case more frames dropped */
108 if ((*frameNum >= (uint)rateCtrl->idrPeriod && rateCtrl->idrPeriod > 0) || (*frameNum > video->MaxFrameNum)) /* first frame or IDR*/
118 encvid->modTimeRef += (uint32)(video->MaxFrameNum * 1000 / rateCtrl->frame_rate)
170 AVCCommonObj *video = encvid->common; local
337 AVCCommonObj *video = encvid->common; local
696 AVCCommonObj *video = encvid->common; local
738 AVCCommonObj *video = encvid->common; local
767 AVCCommonObj *video = encvid->common; local
796 AVCCommonObj *video = encvid->common; local
    [all...]
slice.cpp 24 AVCCommonObj *video = encvid->common; local
25 AVCPicParamSet *pps = video->currPicParams;
26 AVCSliceHeader *sliceHdr = video->sliceHdr;
32 slice_type = video->slice_type;
35 video->mbNum = CurrMbAddr = sliceHdr->first_mb_in_slice;// * (1+video->MbaffFrameFlag);
36 slice_group_id = video->MbToSliceGroupMap[CurrMbAddr];
38 video->mb_skip_run = 0;
43 video->mbNum = CurrMbAddr;
44 currMB = video->currMB = &(video->mblock[CurrMbAddr])
156 AVCCommonObj *video = encvid->common; local
554 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...]
intra_est.cpp 34 AVCCommonObj *video = encvid->common; local
37 int x_pos = (video->mb_x) << 4;
38 int y_pos = (video->mb_y) << 4;
46 if (((x_pos >> 4) != (int)video->PicWidthInMbs - 1) &&
47 ((y_pos >> 4) != (int)video->PicHeightInMbs - 1) &&
48 video->intraAvailA &&
49 video->intraAvailB)
68 topL = video->currPic->Scb + offset;
82 topL = video->currPic->Scr + offset;
113 AVCCommonObj *video = encvid->common local
208 AVCCommonObj *video = encvid->common; local
433 AVCCommonObj *video = encvid->common; local
627 AVCCommonObj *video = encvid->common; local
722 AVCCommonObj *video = encvid->common; local
1365 AVCCommonObj *video = encvid->common; local
1855 AVCCommonObj *video = encvid->common; local
2006 AVCCommonObj *video = encvid->common; local
    [all...]
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 197 public void addVideo(YouTubeVideo video) {
206 YouTubeVideo video; field in class:SafeSaxTest.HandlerFactory
220 video.videoId = body;
228 video.dateAdded = new Time(Time.TIMEZONE_UTC);
229 video.dateAdded.parse3339(body);
237 video.authorName = body;
247 if (video.thumbnailUrl == null && url.length() > 0) {
248 video.thumbnailUrl = url;
258 video.videoUrl = url;
268 video.playbackUrl = url
354 YouTubeVideo video = null; field in class:SafeSaxTest.YouTubeContentHandler
    [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...]
  /external/webkit/WebCore/rendering/
RenderLayerCompositor.cpp 284 #if ENABLE(VIDEO)
286 // If it's a video, give the media player a chance to hook up to the layer.
287 RenderVideo* video = toRenderVideo(layer->renderer()); local
288 video->acceleratedRenderingStateChanged();
526 #if ENABLE(VIDEO)
527 // Video is special. It's a replaced element with a content layer, but has shadow content
529 // when the video element is a stacking context (e.g. due to opacity or transform).
673 #if ENABLE(VIDEO)
1106 RenderVideo* video = toRenderVideo(renderer); local
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_include/khronos/
OMX_Component.h 80 OMX_VIDEO_PORTDEFINITIONTYPE video; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon1434
  /external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibvideo.c 239 /* Set up the new video mode rectangle */
346 /* Query for the list of available video modes */
482 SDL_Surface *video; local
507 video = current;
537 video = SDL_CreateRGBSurface(SDL_SWSURFACE,
539 if ( video == NULL ) {
545 /* Fill in part of the video surface */
546 prev_flags = video->flags;
547 prev_w = video->w;
548 prev_h = video->h
    [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...]
  /frameworks/base/include/media/stagefright/openmax/
OMX_Component.h 97 OMX_VIDEO_PORTDEFINITIONTYPE video; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon8718
  /hardware/qcom/media/mm-core/omxcore/inc/
OMX_Component.h 80 OMX_VIDEO_PORTDEFINITIONTYPE video; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon9621
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Component.h 80 OMX_VIDEO_PORTDEFINITIONTYPE video; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon10017
  /bionic/libc/kernel/common/linux/
videodev.h 197 int video; member in struct:video_unit
  /development/ndk/platforms/android-3/include/linux/
videodev.h 180 int video; member in struct:video_unit
  /external/kernel-headers/original/linux/
videodev.h 2 * Video for Linux version 1 - OBSOLETE
200 int video; /* Video minor */ member in struct:video_unit
256 #define VIDIOCGWIN _IOR('v',9, struct video_window) /* Get the video overlay window */
257 #define VIDIOCSWIN _IOW('v',10, struct video_window) /* Set the video overlay window - passes clip list for hardware smarts , chromakey etc */
260 #define VIDIOCKEY _IOR('v',13, struct video_key) /* Video key event - to dev 255 is to all - cuts capture on all DMA windows with this key (0xFFFFFFFF == all) */
271 #define VIDIOCSPLAYMODE _IOW('v',24, struct video_play_mode) /* Set output video mode/feature */
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 200 //Look for video links
201 Video video = Video.matchURL(url, text); local
202 if (video != null) {
203 return video;
206 // Look for video links.
809 /** Represents a link to a Google Video. */
810 public static class Video extends Token {
811 /** Pattern for a video URL. *
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
videodev.h 2 * Video for Linux version 1 - OBSOLETE
183 int video; /* Video minor */ member in struct:video_unit
239 #define VIDIOCGWIN _IOR('v',9, struct video_window) /* Get the video overlay window */
240 #define VIDIOCSWIN _IOW('v',10, struct video_window) /* Set the video overlay window - passes clip list for hardware smarts , chromakey etc */
243 #define VIDIOCKEY _IOR('v',13, struct video_key) /* Video key event - to dev 255 is to all - cuts capture on all DMA windows with this key (0xFFFFFFFF == all) */
254 #define VIDIOCSPLAYMODE _IOW('v',24, struct video_play_mode) /* Set output video mode/feature */
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
videodev.h 180 int video; member in struct:video_unit
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
videodev.h 180 int video; member in struct:video_unit
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
videodev.h 180 int video; member in struct:video_unit

Completed in 473 milliseconds

12 3