Searched defs:video (Results 1 - 25 of 29) sorted by relevance

12

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Dborders_test.cc31 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video, argument
33 if (video->frame() == 1) {
59 ::libvpx_test::I420VideoSource video("hantro_odd.yuv", 208, 144, 30, 1, 0,
62 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
75 ::libvpx_test::I420VideoSource video("hantro_odd.yuv", 208, 144, 30, 1, 0,
78 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
H A Dactive_map_test.cc36 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video, argument
38 if (video->frame() == 1) {
40 } else if (video->frame() == 3) {
59 } else if (video->frame() == 15) {
80 ::libvpx_test::I420VideoSource video("hantro_odd.yuv", kWidth, kHeight, 30,
83 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
H A Daq_segment_test.cc33 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video, argument
35 if (video->frame() == 1) {
64 ::libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
67 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
84 ::libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
87 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
104 ::libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
107 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
H A Dconfig_test.cc35 virtual void PreEncodeFrameHook(libvpx_test::VideoSource* /*video*/) {
53 libvpx_test::DummyVideoSource video; local
54 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
H A Dcpu_speed_test.cc33 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video, argument
35 if (video->frame() == 1) {
63 ::libvpx_test::I420VideoSource video("hantro_odd.yuv", 208, 144, 30, 1, 0,
66 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
82 ::libvpx_test::I420VideoSource video("hantro_odd.yuv", 208, 144, 30, 1, 0,
85 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
98 ::libvpx_test::I420VideoSource video("hantro_odd.yuv", 208, 144, 30, 1, 0,
101 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
H A Ddecode_test_driver.cc28 void DecoderTest::RunLoop(CompressedVideoSource *video) { argument
34 for (video->Begin(); video->cxdata(); video->Next()) {
35 PreDecodeFrameHook(*video, decoder);
36 vpx_codec_err_t res_dec = decoder->DecodeFrame(video->cxdata(),
37 video->frame_size());
45 DecompressedFrameHook(*img, video->frame_number());
H A Dkeyframe_test.cc35 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video, argument
38 frame_flags_ = (video->frame() % 3) ? 0 : VPX_EFLAG_FORCE_KF;
39 if (set_cpu_used_ && video->frame() == 1)
63 ::libvpx_test::RandomVideoSource video; local
64 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
76 ::libvpx_test::RandomVideoSource video; local
77 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
86 ::libvpx_test::DummyVideoSource video; local
87 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
99 ::libvpx_test::DummyVideoSource video; local
[all...]
H A Daltref_test.cc36 virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video, argument
38 if (video->frame() == 1) {
60 libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
62 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
H A Dtest_vector_test.cc67 // The md5 checksums are computed for each frame in the video file. If md5
72 libvpx_test::CompressedVideoSource *video = NULL; local
74 // Open compressed video file.
76 video = new libvpx_test::IVFVideoSource(filename);
78 video = new libvpx_test::WebMVideoSource(filename);
80 video->Init();
87 ASSERT_NO_FATAL_FAILURE(RunLoop(video));
88 delete video;
H A Dsuperframe_test.cc37 virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video, argument
39 if (video->frame() == 1) {
89 ::libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
91 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
H A Dtile_independence_test.cc51 virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video, argument
53 if (video->frame() == 1) {
92 libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 704, 144,
94 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
H A Dcq_test.cc45 virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video, argument
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));
H A Ddecode_test_driver.h38 // Provides a simplified interface to manage one video decoding.
111 virtual void RunLoop(CompressedVideoSource *video);
114 virtual void PreDecodeFrameHook(const CompressedVideoSource& video, argument
H A Dencode_test_driver.cc20 void Encoder::EncodeFrame(VideoSource *video, const unsigned long frame_flags) { argument
21 if (video->img())
22 EncodeFrameInternal(*video, frame_flags);
37 void Encoder::EncodeFrameInternal(const VideoSource &video, argument
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) { argument
[all...]
H A Ddatarate_test.cc43 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video, argument
45 const vpx_rational_t tb = video->timebase();
136 ::libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
147 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
164 ::libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
175 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
275 virtual void PreEncodeFrameHook(::libvpx_test::VideoSource *video, argument
277 if (video->frame() == 1) {
281 if (video->frame() == 1) {
286 frame_flags_ = SetFrameFlags(video
[all...]
H A Derror_resilience_test.cc59 virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video) { argument
66 if (droppable_frames_[i] == video->frame()) {
156 libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
161 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
167 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
193 libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
208 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
226 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
H A Dresize_test.cc146 ResizingVideoSource video; local
147 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
196 virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video, argument
198 if (video->frame() == kStepDownFrame) {
202 if (video->frame() == kStepUpFrame) {
236 ::libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
248 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
H A Dencode_test_driver.h86 // Provides a simplified interface to manage one video encoding pass, given
87 // a configuration and video source.
112 void EncodeFrame(VideoSource *video, const unsigned long frame_flags);
115 void EncodeFrame(VideoSource *video) { argument
116 EncodeFrame(video, 0);
154 void EncodeFrameInternal(const VideoSource &video,
189 virtual void RunLoop(VideoSource *video);
198 virtual void PreEncodeFrameHook(VideoSource *video) {} argument
199 virtual void PreEncodeFrameHook(VideoSource *video, Encoder *encoder) {} argument
H A Dexternal_frame_buffer_test.cc206 const libvpx_test::CompressedVideoSource &video,
208 if (num_buffers_ > 0 && video.frame_number() == 0) {
346 // needed. The md5 checksums are computed for each frame in the video file.
351 libvpx_test::CompressedVideoSource *video = NULL; local
365 // Open compressed video file.
367 video = new libvpx_test::IVFVideoSource(filename);
369 video = new libvpx_test::WebMVideoSource(filename);
371 ASSERT_TRUE(video != NULL);
372 video->Init();
379 ASSERT_NO_FATAL_FAILURE(RunLoop(video));
205 PreDecodeFrameHook( const libvpx_test::CompressedVideoSource &video, libvpx_test::Decoder *decoder) argument
[all...]
/hardware/intel/common/libmix/mix_video/src/
H A Dtest.c65 MixVideo *video = mix_video_new (); local
74 mix_video_initialize (video, mode, init_params, drm);
83 g_object_unref (G_OBJECT (video));
/hardware/qcom/display/msm8996/sdm/include/core/
H A Dlayer_buffer.h179 uint32_t video : 1; //!< This flag shall be set by client to indicate that the member in struct:sdm::LayerBufferFlags::__anon3222::__anon3223
180 //!< buffer is video/ui buffer.
/hardware/qcom/media/msm8974/mm-core/inc/
H A DOMX_Component.h80 OMX_VIDEO_PORTDEFINITIONTYPE video; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon3659
/hardware/qcom/media/msm8974/mm-core/omxcore/inc/
H A DOMX_Component.h80 OMX_VIDEO_PORTDEFINITIONTYPE video; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon3668
/hardware/qcom/media/msm8996/mm-core/inc/
H A DOMX_Component.h80 OMX_VIDEO_PORTDEFINITIONTYPE video; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon3717
/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
H A DOMX_Component.h80 OMX_VIDEO_PORTDEFINITIONTYPE video; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon5395

Completed in 307 milliseconds

12