HomeSort by relevance Sort by last modified time
    Searched defs:video (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/libvpx/libvpx/test/
vp8_fragments_test.cc 32 ::libvpx_test::RandomVideoSource video; local
33 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
frame_size_tests.cc 29 const libvpx_test::VideoSource & /*video*/,
35 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video,
37 if (video->frame() == 0) {
50 ::libvpx_test::RandomVideoSource video; local
53 video.SetSize(DECODE_WIDTH_LIMIT + 16, DECODE_HEIGHT_LIMIT + 16);
54 video.set_limit(2);
56 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
61 ::libvpx_test::RandomVideoSource video; local
64 video.SetSize(DECODE_WIDTH_LIMIT, DECODE_HEIGHT_LIMIT);
65 video.set_limit(2)
88 ::libvpx_test::RandomVideoSource video; local
    [all...]
config_test.cc 37 virtual void PreEncodeFrameHook(libvpx_test::VideoSource * /*video*/) {
55 libvpx_test::DummyVideoSource video; local
56 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
decode_svc_test.cc 31 const libvpx_test::CompressedVideoSource &video,
33 if (video.frame_number() == 0)
57 std::unique_ptr<libvpx_test::CompressedVideoSource> video; local
58 video.reset(new libvpx_test::IVFVideoSource(filename));
59 ASSERT_TRUE(video.get() != NULL);
60 video->Init();
65 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get()));
74 std::unique_ptr<libvpx_test::CompressedVideoSource> video; local
75 video.reset(new libvpx_test::IVFVideoSource(filename));
76 ASSERT_TRUE(video.get() != NULL)
91 std::unique_ptr<libvpx_test::CompressedVideoSource> video; local
109 std::unique_ptr<libvpx_test::CompressedVideoSource> video; local
    [all...]
keyframe_test.cc 36 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video,
39 frame_flags_ = (video->frame() % 3) ? 0 : VPX_EFLAG_FORCE_KF;
41 if (set_cpu_used_ && video->frame() == 0) {
66 ::libvpx_test::RandomVideoSource video; local
67 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
80 ::libvpx_test::RandomVideoSource video; local
81 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
90 ::libvpx_test::DummyVideoSource video; local
91 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
103 ::libvpx_test::DummyVideoSource video; local
    [all...]
realtime_test.cc 51 ::libvpx_test::RandomVideoSource video; local
52 video.SetSize(kVideoSourceWidth, kVideoSourceHeight);
53 video.set_limit(kFramesToEncode);
54 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
vp9_motion_vector_test.cc 62 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video,
64 if (video->frame() == 0) {
86 std::unique_ptr<libvpx_test::VideoSource> video; local
87 video.reset(new libvpx_test::YUVVideoSource(
91 ASSERT_TRUE(video.get() != NULL);
92 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get()));
invalid_file_test.cc 55 const libvpx_test::CompressedVideoSource &video,
73 << "Results don't match: frame number = " << video.frame_number()
79 << "Results don't match: frame number = " << video.frame_number()
92 // Open compressed video file.
93 std::unique_ptr<libvpx_test::CompressedVideoSource> video; local
95 video.reset(new libvpx_test::IVFVideoSource(filename));
98 video.reset(new libvpx_test::WebMVideoSource(filename));
105 ASSERT_TRUE(video.get() != NULL);
106 video->Init();
115 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get(), cfg))
    [all...]
test_vector_test.cc 89 // The md5 checksums are computed for each frame in the video file. If md5
105 // Open compressed video file.
106 std::unique_ptr<libvpx_test::CompressedVideoSource> video; local
108 video.reset(new libvpx_test::IVFVideoSource(filename));
111 video.reset(new libvpx_test::WebMVideoSource(filename));
118 ASSERT_TRUE(video.get() != NULL);
119 video->Init();
130 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get(), cfg));
  /external/libaom/libaom/test/
frame_size_tests.cc 36 virtual void PreEncodeFrameHook(::libaom_test::VideoSource *video,
38 if (video->frame() == 0) {
51 ::libaom_test::RandomVideoSource video; local
53 video.SetSize(DECODE_WIDTH_LIMIT + 16, DECODE_HEIGHT_LIMIT + 16);
54 video.set_limit(2);
56 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
60 ::libaom_test::RandomVideoSource video; local
62 video.SetSize(DECODE_WIDTH_LIMIT, DECODE_HEIGHT_LIMIT);
63 video.set_limit(2);
65 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
70 ::libaom_test::RandomVideoSource video; local
    [all...]
level_test.cc 55 virtual void PreEncodeFrameHook(::libaom_test::VideoSource *video,
57 if (video->frame() == 0) {
97 std::unique_ptr<libaom_test::VideoSource> video; local
98 video.reset(new libaom_test::Y4mVideoSource("park_joy_90p_8_420.y4m", 0, 10));
99 ASSERT_TRUE(video.get() != NULL);
102 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get()));
motion_vector_test.cc 63 virtual void PreEncodeFrameHook(::libaom_test::VideoSource *video,
65 if (video->frame() == 0) {
95 std::unique_ptr<libaom_test::VideoSource> video; local
96 video.reset(new libaom_test::YUVVideoSource(
99 ASSERT_TRUE(video.get() != NULL);
100 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get()));
test_vector_test.cc 54 const libaom_test::CompressedVideoSource &video,
56 if (video.frame_number() == 0) decoder->Control(AV1D_SET_ROW_MT, row_mt_);
102 // The md5 checksums are computed for each frame in the video file. If md5
119 // Open compressed video file.
120 std::unique_ptr<libaom_test::CompressedVideoSource> video; local
122 video.reset(new libaom_test::IVFVideoSource(filename));
126 video.reset(new libaom_test::WebMVideoSource(filename));
133 ASSERT_TRUE(video.get() != NULL);
134 video->Init();
146 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get(), cfg))
    [all...]
end_to_end_test.cc 130 virtual void PreEncodeFrameHook(::libaom_test::VideoSource *video,
132 if (video->frame() == 0) {
167 std::unique_ptr<libaom_test::VideoSource> video; local
169 video.reset(new libaom_test::Y4mVideoSource(test_video_param_.filename, 0,
172 video.reset(new libaom_test::YUVVideoSource(
176 ASSERT_TRUE(video.get() != NULL);
178 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get()));
rt_end_to_end_test.cc 85 virtual void PreEncodeFrameHook(::libaom_test::VideoSource *video,
87 if (video->frame() == 0) {
111 std::unique_ptr<libaom_test::VideoSource> video; local
112 video.reset(new libaom_test::Y4mVideoSource(test_video_param_.filename, 0,
114 ASSERT_TRUE(video.get() != NULL);
116 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get()));
arf_freq_test.cc 145 virtual void PreEncodeFrameHook(::libaom_test::VideoSource *video,
147 if (video->frame() == 0) {
190 std::unique_ptr<libaom_test::VideoSource> video; local
192 video.reset(new libaom_test::Y4mVideoSource(test_video_param_.filename, 0,
195 video.reset(new libaom_test::YUVVideoSource(
202 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get()));
horz_superres_test.cc 115 virtual void PreEncodeFrameHook(::libaom_test::VideoSource *video,
117 if (video->frame() == 0) {
142 std::unique_ptr<libaom_test::VideoSource> video; local
143 video.reset(new libaom_test::Y4mVideoSource(test_video_param_.filename, 0,
145 ASSERT_TRUE(video.get() != NULL);
147 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get()));
220 virtual void PreEncodeFrameHook(::libaom_test::VideoSource *video,
222 if (video->frame() == 0) {
247 std::unique_ptr<libaom_test::VideoSource> video; local
248 video.reset(new libaom_test::Y4mVideoSource(test_video_param_.filename, 0
358 std::unique_ptr<libaom_test::VideoSource> video; local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/video/
ProjectionVideoActivity.java 17 package com.android.cts.verifier.projection.video;
VideoPresentation.java 17 package com.android.cts.verifier.projection.video;
32 * Play a test video that determines if the video and audio are in sync in projected presentations
  /cts/tests/video/src/android/video/cts/
CodecInfo.java 17 package android.video.cts;
35 * Uses public member variables instead of methods as this code is only for video benchmarking.
53 * @param w video width
54 * @param h video height
  /external/u-boot/drivers/video/
video-uclass.c 10 #include <video.h>
40 * text to the video device.
79 debug("%s: Reserving %lx bytes at %lx for video device '%s'\n",
83 debug("Video frame buffers from %lx to %lx\n", gd->video_bottom,
130 /* Flush video activity to the caches */
229 * console if enabled, a rotated console if the video driver requests
233 * probing this video driver, or in the probe() method.
279 printf("Video device '%s' cannot allocate frame buffer memory -ensure the device is set up before relocation\n",
283 debug("%s: Claiming %lx bytes at %lx for video device '%s'\n",
290 UCLASS_DRIVER(video) = variable
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
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...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaRecorderStressTest.java 230 // If we fail for any reason, set the video size to default value.
249 Log.v(TAG, String.format("Camera video size used for test %dx%d", width, height));
250 output.write("H263 video record- reset after prepare Stress test\n");
290 //Stress test case for switching camera and video recorder preview.
304 output.write("Camera and video recorder preview switching\n");
327 // If we fail for any reason, set the video size to default value.
337 Log.v(TAG, String.format("Camera video size used for test %dx%d", width, height));
371 Log.v(TAG, "release video recorder");
391 File video = new File(filename); local
392 Log.v(TAG, "remove recorded video " + filename)
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
VideoProvider.java 119 "category: " + i + " Name:" + category_name + " video length: "
124 JSONObject video = videos.getJSONObject(j); local
125 String description = video.getString(TAG_DESCRIPTION);
126 JSONArray videoUrls = video.getJSONArray(TAG_SOURCES);
130 title = video.getString(TAG_TITLE);
133 video.getString(TAG_BACKGROUND));
135 video.getString(TAG_CARD_THUMB));
136 studio = video.getString(TAG_STUDIO);
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
VideoProvider.java 89 "category: " + i + " Name:" + category_name + " video length: "
94 JSONObject video = videos.getJSONObject(j); local
95 String description = video.getString(TAG_DESCRIPTION);
96 JSONArray videoUrls = video.getJSONArray(TAG_SOURCES);
100 title = video.getString(TAG_TITLE);
103 video.getString(TAG_BACKGROUND));
105 video.getString(TAG_CARD_THUMB));
106 studio = video.getString(TAG_STUDIO);

Completed in 6514 milliseconds

1 2 3