HomeSort by relevance Sort by last modified time
    Searched refs:video (Results 76 - 100 of 586) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/examples/api/desktopCapture/
app.js 7 var video = document.querySelector("video");
8 video.src = URL.createObjectURL(stream);
24 video: { mandatory: { chromeMediaSource: "desktop",
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
config_test.cc 35 virtual void PreEncodeFrameHook(libvpx_test::VideoSource* /*video*/) {
53 libvpx_test::DummyVideoSource video; local
54 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
encode_test_driver.cc 20 void Encoder::EncodeFrame(VideoSource *video, const unsigned long frame_flags) {
21 if (video->img())
22 EncodeFrameInternal(*video, frame_flags);
37 void Encoder::EncodeFrameInternal(const VideoSource &video,
40 const vpx_image_t *img = video.img();
46 cfg_.g_timebase = video.timebase();
64 video.img(), video.pts(), video.duration(),
138 void EncoderTest::RunLoop(VideoSource *video) {
    [all...]
svc_test.cc 261 libvpx_test::I420VideoSource video(test_file_name_, kWidth, kHeight,
264 video.Begin();
266 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
267 video.duration(), VPX_DL_GOOD_QUALITY);
288 libvpx_test::I420VideoSource video(test_file_name_, kWidth, kHeight,
292 video.Begin();
294 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
295 video.duration(), VPX_DL_GOOD_QUALITY)
    [all...]
cq_test.cc 45 virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video,
47 if (video->frame() == 1) {
87 libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
89 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
100 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
  /external/libvpx/libvpx/test/
config_test.cc 35 virtual void PreEncodeFrameHook(libvpx_test::VideoSource* /*video*/) {
53 libvpx_test::DummyVideoSource video; local
54 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
encode_test_driver.cc 20 void Encoder::EncodeFrame(VideoSource *video, const unsigned long frame_flags) {
21 if (video->img())
22 EncodeFrameInternal(*video, frame_flags);
37 void Encoder::EncodeFrameInternal(const VideoSource &video,
40 const vpx_image_t *img = video.img();
46 cfg_.g_timebase = video.timebase();
64 video.img(), video.pts(), video.duration(),
138 void EncoderTest::RunLoop(VideoSource *video) {
    [all...]
svc_test.cc 261 libvpx_test::I420VideoSource video(test_file_name_, kWidth, kHeight,
264 video.Begin();
266 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
267 video.duration(), VPX_DL_GOOD_QUALITY);
288 libvpx_test::I420VideoSource video(test_file_name_, kWidth, kHeight,
292 video.Begin();
294 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
295 video.duration(), VPX_DL_GOOD_QUALITY)
    [all...]
cq_test.cc 45 virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video,
47 if (video->frame() == 1) {
87 libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
89 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
100 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
findhalfpel.cpp 65 void FindHalfPelMB(VideoEncData *video, UChar *cur, MOT *mot, UChar *ncand,
76 Int h263_mode = video->encParams->H263_Enabled; /* 3/29/01 */
78 Int range = video->encParams->SearchRange;
79 Int lx = video->currVop->pitch;
80 Int width = video->currVop->width; /* padding */
81 Int height = video->vol[video->currLayer]->height;
83 video->functionPointer->SAD_MB_HalfPel;
84 void *extra_info = video->sad_extra_info;
89 cur = video->currYMB
    [all...]
mp4enc_lib.h 22 #include "mp4lib_int.h" // main video structure
30 PV_STATUS EncodeVop(VideoEncData *video);
31 PV_STATUS EncodeSlice(VideoEncData *video);
32 PV_STATUS EncodeVideoPacketHeader(VideoEncData *video, int MB_number,
35 PV_STATUS EncodeVopNotCoded(VideoEncData *video, UChar *bstream, Int *size, ULong modTime);
39 PV_STATUS EncodeFrameCombinedMode(VideoEncData *video);
40 PV_STATUS EncodeSliceCombinedMode(VideoEncData *video);
43 PV_STATUS EncodeFrameDataPartMode(VideoEncData *video);
44 PV_STATUS EncodeSliceDataPartMode(VideoEncData *video);
50 PV_STATUS CodeMB_H263(VideoEncData *video, approxDCT *function, Int offsetQP, Int ncoefblck[])
    [all...]
motion_est.cpp 75 void MBMotionSearch(VideoEncData *video, UChar *cur, UChar *best_cand[],
78 Int fullsearch(VideoEncData *video, Vol *currVol, UChar *ref, UChar *cur,
80 Int fullsearchBlk(VideoEncData *video, Vol *currVol, UChar *cent, UChar *cur,
83 VideoEncData *video, Int type_pred);
91 void PrepareCurMB(VideoEncData *video, UChar *cur);
105 void HTFMPrepareCurMB(VideoEncData *video, HTFM_Stat *htfm_stat, UChar *cur);
136 void MotionEstimation(VideoEncData *video)
138 UChar use_4mv = video->encParams->MV8x8_Enabled;
139 Vol *currVol = video->vol[video->currLayer]
    [all...]
  /hardware/intel/common/omx-components/
Android.mk 8 #intel video codecs
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
config_test.cc 35 virtual void PreEncodeFrameHook(libvpx_test::VideoSource* /*video*/) {
53 libvpx_test::DummyVideoSource video; local
54 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
encode_test_driver.cc 20 void Encoder::EncodeFrame(VideoSource *video, const unsigned long frame_flags) {
21 if (video->img())
22 EncodeFrameInternal(*video, frame_flags);
37 void Encoder::EncodeFrameInternal(const VideoSource &video,
40 const vpx_image_t *img = video.img();
46 cfg_.g_timebase = video.timebase();
64 video.img(), video.pts(), video.duration(),
138 void EncoderTest::RunLoop(VideoSource *video) {
    [all...]
svc_test.cc 261 libvpx_test::I420VideoSource video(test_file_name_, kWidth, kHeight,
264 video.Begin();
266 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
267 video.duration(), VPX_DL_GOOD_QUALITY);
288 libvpx_test::I420VideoSource video(test_file_name_, kWidth, kHeight,
292 video.Begin();
294 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
295 video.duration(), VPX_DL_GOOD_QUALITY)
    [all...]
vp9_thread_test.cc 102 libvpx_test::WebMVideoSource video(filename);
103 video.Init();
110 for (video.Begin(); video.cxdata(); video.Next()) {
112 decoder.DecodeFrame(video.cxdata(), video.frame_size());
cq_test.cc 45 virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video,
47 if (video->frame() == 1) {
87 libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
89 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
100 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
  /frameworks/av/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
335 AVCCommonObj *video = encvid->common; local
694 AVCCommonObj *video = encvid->common; local
736 AVCCommonObj *video = encvid->common; local
765 AVCCommonObj *video = encvid->common; local
794 AVCCommonObj *video = encvid->common; local
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/
Android.mk 17 $(EXYNOS_OMX_COMPONENT)/video/dec \
20 hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/include
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
dcac_prediction.cpp 29 VideoDecData *video,
39 int mbnum = video->mbnum;
40 int nMBPerRow = video->nMBPerRow;
41 int x_pos = video->mbnum_col;
42 int y_pos = video->mbnum_row;
45 int16 *QP_store = video->QPMB + mbnum;
46 int QP = video->QPMB[mbnum];
50 uint8 *slice_nb = video->sliceNo;
51 typeDCStore *DC_store = video->predDC + mbnum;
52 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos
    [all...]
vlc_dequant.cpp 53 VideoDecData *video = (VideoDecData*) vid; local
54 Vol *currVol = video->vol[video->currLayer];
55 BitstreamDecVideo *stream = video->bitstream;
56 int16 *datablock = video->mblock->block[comp]; /* 10/20/2000, assume it has been reset of all-zero !!!*/
57 int mbnum = video->mbnum;
58 uint CBP = video->headerInfo.CBP[mbnum];
59 int QP = video->QPMB[mbnum];
60 typeDCStore *DC = video->predDC + mbnum;
61 int x_pos = video->mbnum_col
386 VideoDecData *video = (VideoDecData*) vid; local
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
IfElseFilterTest.java 54 FrameImage2D video = local
65 video.setBitmap(videoBitmap);
66 injectInputFrame("trueResult", video);
75 // Ensure that for true, we use the video input
77 assertEquals(outputImage, video);
85 FrameImage2D video = local
96 video.setBitmap(videoBitmap);
97 injectInputFrame("trueResult", video);
107 // Ensure that for true, we use the video input
  /external/chromium_org/third_party/WebKit/Source/core/css/
mediaControls.css 28 /* WARNING: This css file can only style <audio> and <video> elements */
36 video::-webkit-media-controls {
47 audio::-webkit-media-controls-enclosure, video::-webkit-media-controls-enclosure {
58 video::-webkit-media-controls-enclosure {
64 audio::-webkit-media-controls-panel, video::-webkit-media-controls-panel {
86 video:-webkit-full-page-media {
95 audio:-webkit-full-page-media, video:-webkit-full-page-media {
101 video:-webkit-full-page-media::-webkit-media-controls-panel {
105 audio::-webkit-media-controls-mute-button, video::-webkit-media-controls-mute-button {
124 video::-webkit-media-controls-overlay-enclosure
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_cursor.c 111 SDL_VideoDevice *video = current_video; local
155 if ( video->CreateWMCursor ) {
156 cursor->wm_cursor = video->CreateWMCursor(video, data, mask,
166 the video mode and when the SDL window gains the mouse focus.
170 SDL_VideoDevice *video = current_video; local
173 /* Make sure that the video subsystem has been initialized */
174 if ( ! video ) {
186 } else if ( video->MoveWMCursor ) {
187 /* If the video driver is moving the cursor directly
246 SDL_VideoDevice *video = current_video; local
279 SDL_VideoDevice *video = current_video; local
295 SDL_VideoDevice *video = current_video; local
323 SDL_VideoDevice *video = current_video; local
660 SDL_VideoDevice *video = current_video; local
734 SDL_VideoDevice *video = current_video; local
    [all...]

Completed in 896 milliseconds

1 2 34 5 6 7 8 91011>>