Home | History | Annotate | Download | only in test

Lines Matching defs:video_

288   ExternalFrameBufferTest() : video_(NULL), decoder_(NULL), num_buffers_(0) {}
291 video_ = new libvpx_test::WebMVideoSource(kVP9TestFile);
292 ASSERT_TRUE(video_ != NULL);
293 video_->Init();
294 video_->Begin();
304 delete video_;
305 video_ = NULL;
322 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size());
324 if (res == VPX_CODEC_OK) video_->Next();
329 for (; video_->cxdata() != NULL; video_->Next()) {
331 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size());
349 libvpx_test::WebMVideoSource *video_;
358 video_ = new libvpx_test::WebMVideoSource(kVP9NonRefTestFile);
359 ASSERT_TRUE(video_ != NULL);
360 video_->Init();
361 video_->Begin();