Home | History | Annotate | Download | only in unit_test

Lines Matching refs:out_frame

118   I420VideoFrame *out_frame = NULL;
120 &out_frame));
190 I420VideoFrame* out_frame = NULL;
194 EXPECT_EQ(VPM_OK, vpm_->PreprocessFrame(video_frame_, &out_frame));
195 EXPECT_FALSE(out_frame == NULL);
196 if (out_frame) {
197 EXPECT_EQ(resolution, out_frame->width());
198 EXPECT_EQ(resolution, out_frame->height());
202 EXPECT_EQ(VPM_OK, vpm_->PreprocessFrame(video_frame_, &out_frame));
203 EXPECT_TRUE(out_frame == NULL);
281 I420VideoFrame* out_frame = NULL;
284 ASSERT_EQ(VPM_OK, vpm->PreprocessFrame(source_frame, &out_frame));
286 if (out_frame) {
287 EXPECT_EQ(source_frame.render_time_ms(), out_frame->render_time_ms());
288 EXPECT_EQ(source_frame.timestamp(), out_frame->timestamp());
293 // (2) scale the resampled frame (|out_frame|) back to the original size and
306 if (PrintI420VideoFrame(*out_frame, stand_alone_file) < 0) {
314 resampled_source_frame.CopyFrame(*out_frame);
321 &out_frame));
331 if (PrintI420VideoFrame(*out_frame, stand_alone_file) < 0) {
339 double psnr = I420PSNR(&source_frame, out_frame);