Home
last modified time | relevance | path

Searched refs:frame1 (Results 1 – 25 of 2212) sorted by relevance

12345678910>>...89

/dports/www/chromium-legacy/chromium-88.0.4324.182/media/gpu/test/
H A Dimage_quality_metrics.cc34 double ComputeSimilarity(const VideoFrame* frame1, in ComputeSimilarity() argument
49 if (frame1->format() != PIXEL_FORMAT_I420) { in ComputeSimilarity()
51 frame1 = converted_frame1.get(); in ComputeSimilarity()
70 frame1->data(0), frame1->stride(0), frame1->data(1), frame1->stride(1), in ComputeSimilarity()
71 frame1->data(2), frame1->stride(2), frame2->data(0), frame2->stride(0), in ComputeSimilarity()
73 frame1->visible_rect().width(), frame1->visible_rect().height()); in ComputeSimilarity()
77 size_t CompareFramesWithErrorDiff(const VideoFrame& frame1, in CompareFramesWithErrorDiff() argument
80 ASSERT_TRUE_OR_RETURN(frame1.format() == frame2.format(), in CompareFramesWithErrorDiff()
91 const VideoPixelFormat format = frame1.format(); in CompareFramesWithErrorDiff()
95 const uint8_t* data1 = frame1.data(i); in CompareFramesWithErrorDiff()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/common_video/
H A Di420_video_frame_unittest.cc151 I420VideoFrame frame1; in TEST() local
154 frame1.set_timestamp(timestamp); in TEST()
155 frame1.set_ntp_time_ms(ntp_time_ms); in TEST()
156 frame1.set_render_time_ms(render_time_ms); in TEST()
158 frame2.ShallowCopy(frame1); in TEST()
203 I420VideoFrame frame1, frame2; in TEST() local
244 I420VideoFrame frame1; in TEST() local
252 EXPECT_NE(y, frame1.buffer(kYPlane)); in TEST()
253 EXPECT_NE(u, frame1.buffer(kUPlane)); in TEST()
254 EXPECT_NE(v, frame1.buffer(kVPlane)); in TEST()
[all …]
/dports/misc/dartsim/dart-6.11.1/python/tests/unit/dynamics/
H A Dtest_simple_frame.py11 frame1 = dart.dynamics.SimpleFrame()
12 assert not frame1.isWorld()
13 assert not frame1.isShapeNode()
14 assert frame1.isShapeFrame()
20 frame1.setTranslation([1, 2, 3])
25 assert frame1.getParentFrame().isWorld()
26 assert frame1.descendsFrom(None)
27 assert frame1.descendsFrom(world_frame)
28 assert frame1.descendsFrom(frame1)
30 frame2 = frame1.spawnChildSimpleFrame()
[all …]
/dports/databases/pgfouine/pgfouine-1.2/tests/simpletest/test/
H A Dframes_test.php69 $frameset->addFrame($frame1);
97 $frameset->addFrame($frame1);
116 $frameset->addFrame($frame1);
121 $frame1->tally();
136 $frameset->addFrame($frame1);
197 $frameset->addFrame($frame1);
346 $frame1->setReturnValue(
365 $frame1->setReturnValue(
387 $frame1->setReturnValue(
528 $frame1->tally();
[all …]
/dports/graphics/qgis/qgis-3.22.3/tests/src/core/
H A Dtestqgslayoutmultiframe.cpp219 frame1->setItemOpacity( 0.5 ); in addFrame()
254 frame1->setId( "my frame" ); in displayName()
265 htmlItem->addFrame( frame1 ); in frameIsEmpty()
298 htmlItem->addFrame( frame1 ); in addRemovePage()
355 htmlItem->addFrame( frame1 ); in undoRedo()
367 frame1->endCommand(); in undoRedo()
370 frame1->endCommand(); in undoRedo()
373 frame1->endCommand(); in undoRedo()
383 frame1->endCommand(); in undoRedo()
386 frame1->endCommand(); in undoRedo()
[all …]
/dports/graphics/qgis-ltr/qgis-3.16.16/tests/src/core/
H A Dtestqgslayoutmultiframe.cpp217 frame1->setItemOpacity( 0.5 ); in addFrame()
252 frame1->setId( "my frame" ); in displayName()
263 htmlItem->addFrame( frame1 ); in frameIsEmpty()
296 htmlItem->addFrame( frame1 ); in addRemovePage()
353 htmlItem->addFrame( frame1 ); in undoRedo()
365 frame1->endCommand(); in undoRedo()
368 frame1->endCommand(); in undoRedo()
371 frame1->endCommand(); in undoRedo()
381 frame1->endCommand(); in undoRedo()
384 frame1->endCommand(); in undoRedo()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.Diagnostics/
H A DStackFrameTest.cs24 private StackFrame frame1; field in MonoTests.System.Diagnostics.StackFrameTest1
37 frame1 = null; in TearDown()
49 frame1.GetFileName (), in TestGetFileName()
65 frame1.GetFileLineNumber (), in TestGetFileLineNumber()
100 frame1.GetMethod ().Name, in TestGetMethod()
126 private StackFrame frame1; field in MonoTests.System.Diagnostics.StackFrameTest2
133 frame1 = new StackFrame (); in SetUp()
141 frame1 = null; in TearDown()
263 protected StackFrame frame1; field in MonoTests.System.Diagnostics.StackFrameTest3
275 frame1 = new StackFrame (2); in NestedSetUp()
[all …]
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/optflow/test/
H A Dtest_OF_accuracy.cpp148 Mat frame1, frame2, GT; in TEST() local
163 Mat frame1, frame2, GT; in TEST() local
166 cvtColor(frame1, frame1, COLOR_BGR2GRAY); in TEST()
181 Mat frame1, frame2, GT; in TEST() local
248 Mat frame1, frame2, GT; in TEST() local
277 Mat frame1, frame2, GT; in TEST() local
292 Mat frame1, frame2, GT; in TEST() local
306 Mat frame1, frame2, GT; in TEST() local
310 frame1 = frame1(Rect(0, 0, sz.width, sz.height)); in TEST()
316 img1.push_back(frame1); in TEST()
[all …]
/dports/net-im/tg_owt/tg_owt-d578c76/src/api/audio/test/
H A Daudio_frame_unittest.cc108 AudioFrame frame1; in TEST() local
115 frame1.CopyFrom(frame2); in TEST()
117 EXPECT_EQ(frame2.timestamp_, frame1.timestamp_); in TEST()
124 EXPECT_EQ(frame2.muted(), frame1.muted()); in TEST()
130 frame1.CopyFrom(frame2); in TEST()
132 EXPECT_EQ(frame2.muted(), frame1.muted()); in TEST()
137 AudioFrame frame1, frame2; in TEST() local
145 frame1.set_absolute_capture_timestamp_ms(12345678); in TEST()
158 swap(frame1, frame2); in TEST()
160 EXPECT_EQ(kTimestamp + 1, frame1.timestamp_); in TEST()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/api/audio/test/
H A Daudio_frame_unittest.cc108 AudioFrame frame1; in TEST() local
115 frame1.CopyFrom(frame2); in TEST()
117 EXPECT_EQ(frame2.timestamp_, frame1.timestamp_); in TEST()
124 EXPECT_EQ(frame2.muted(), frame1.muted()); in TEST()
130 frame1.CopyFrom(frame2); in TEST()
132 EXPECT_EQ(frame2.muted(), frame1.muted()); in TEST()
137 AudioFrame frame1, frame2; in TEST() local
145 frame1.set_absolute_capture_timestamp_ms(12345678); in TEST()
158 swap(frame1, frame2); in TEST()
160 EXPECT_EQ(kTimestamp + 1, frame1.timestamp_); in TEST()
[all …]
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/api/audio/test/
H A Daudio_frame_unittest.cc108 AudioFrame frame1; in TEST() local
115 frame1.CopyFrom(frame2); in TEST()
117 EXPECT_EQ(frame2.timestamp_, frame1.timestamp_); in TEST()
124 EXPECT_EQ(frame2.muted(), frame1.muted()); in TEST()
130 frame1.CopyFrom(frame2); in TEST()
132 EXPECT_EQ(frame2.muted(), frame1.muted()); in TEST()
137 AudioFrame frame1, frame2; in TEST() local
145 frame1.set_absolute_capture_timestamp_ms(12345678); in TEST()
158 swap(frame1, frame2); in TEST()
160 EXPECT_EQ(kTimestamp + 1, frame1.timestamp_); in TEST()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/test/com/jogamp/opengl/test/junit/newt/parenting/
H A DTestParenting01cAWT.java89 frame1.setLayout(new BorderLayout()); in test01CreateVisibleDestroy1()
108 frame1.setSize(width, height); in test01CreateVisibleDestroy1()
109 frame1.setVisible(true); in test01CreateVisibleDestroy1()
120 frame1.setVisible(false); in test01CreateVisibleDestroy1()
127 frame1.setVisible(true); in test01CreateVisibleDestroy1()
136 frame1.remove(newtCanvasAWT); in test01CreateVisibleDestroy1()
146 frame1.dispose(); in test01CreateVisibleDestroy1()
175 frame1.setLocation(0, 0); in test02AWTWinHopFrame2Frame()
176 frame1.setVisible(true); in test02AWTWinHopFrame2Frame()
197 frame1.validate(); in test02AWTWinHopFrame2Frame()
[all …]
/dports/sysutils/namefix/namefix.pl/libs/gui/
H A Dmanual.pm78 my $frame1 = $w->Frame(
96 $frame1->Label(
106 $frame1->Entry
118 $frame1->Label(
126 $frame1->Entry
140 $frame1->Entry
153 $frame1->Label(
163 $frame1->Entry
179 $frame1->Entry
249 $frame1->Entry(
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/gnap/scenes/
H A Dintro.cpp86 Graphics::Surface *frame1 = frame->convertTo(_vm->_system->getScreenFormat()); in run() local
87 …_vm->_system->copyRectToScreen(frame1->getPixels(), frame1->pitch, vidPosX, vidPosY, frame1->w, fr… in run()
88 frame1->free(); in run()
89 delete frame1; in run()
94 for (uint16 y = 0; y < frame1->h / 2; y++) { in run()
95 uint32 *ptrFrom = (uint32 *)frame1->getBasePtr(0, y); in run()
96 uint32 *ptrTo = (uint32 *)frame1->getBasePtr(0, frame1->h - y - 1); in run()
98 for (uint16 x = 0; x < frame1->pitch / 4; x++) { in run()
107 …_vm->_system->copyRectToScreen(frame1->getPixels(), frame1->pitch, vidPosX, vidPosY, frame1->w, fr… in run()
108 frame1->free(); in run()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/gnap/scenes/
H A Dintro.cpp86 Graphics::Surface *frame1 = frame->convertTo(_vm->_system->getScreenFormat()); in run() local
87 …_vm->_system->copyRectToScreen(frame1->getPixels(), frame1->pitch, vidPosX, vidPosY, frame1->w, fr… in run()
88 frame1->free(); in run()
89 delete frame1; in run()
94 for (uint16 y = 0; y < frame1->h / 2; y++) { in run()
95 uint32 *ptrFrom = (uint32 *)frame1->getBasePtr(0, y); in run()
96 uint32 *ptrTo = (uint32 *)frame1->getBasePtr(0, frame1->h - y - 1); in run()
98 for (uint16 x = 0; x < frame1->pitch / 4; x++) { in run()
107 …_vm->_system->copyRectToScreen(frame1->getPixels(), frame1->pitch, vidPosX, vidPosY, frame1->w, fr… in run()
108 frame1->free(); in run()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/video_engine/
H A Dvie_capturer_unittest.cc41 bool EqualFrames(const I420VideoFrame& frame1,
43 bool EqualTextureFrames(const I420VideoFrame& frame1,
45 bool EqualBufferFrames(const I420VideoFrame& frame1,
241 bool EqualFrames(const I420VideoFrame& frame1, in EqualFrames() argument
244 return EqualTextureFrames(frame1, frame2); in EqualFrames()
245 return EqualBufferFrames(frame1, frame2); in EqualFrames()
251 (frame1.width() == frame2.width()) && in EqualTextureFrames()
252 (frame1.height() == frame2.height()) && in EqualTextureFrames()
256 bool EqualBufferFrames(const I420VideoFrame& frame1, in EqualBufferFrames() argument
258 return ((frame1.width() == frame2.width()) && in EqualBufferFrames()
[all …]
/dports/www/trafficserver/trafficserver-9.1.1/iocore/net/quic/test/
H A Dtest_QUICFrame.cc91 CHECK(frame1->size() == 6);
110 CHECK(frame1->size() == 8);
130 CHECK(frame1->size() == 9);
503 frame1->~QUICFrame();
528 frame1->~QUICFrame();
567 frame1->~QUICFrame();
580 frame1->~QUICFrame();
599 frame1->~QUICFrame();
627 frame1->~QUICFrame();
645 frame1->~QUICFrame();
[all …]
/dports/deskutils/owncloudclient/ownCloud-2.8.2.4246/src/3rdparty/libcrashreporter-qt/3rdparty/breakpad/processor/
H A Dstackwalker_x86_unittest.cc286 frame1->context_validity); in TEST_F()
351 frame1->context_validity); in TEST_F()
417 frame1->context_validity); in TEST_F()
545 frame1->context_validity); in TEST_F()
623 frame1->context_validity); in TEST_F()
721 frame1->context_validity); in TEST_F()
726 EXPECT_EQ(&module2, frame1->module); in TEST_F()
815 frame1->context_validity); in TEST_F()
904 frame1->context_validity); in TEST_F()
983 frame1->context_validity); in TEST_F()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/crashreporter/google-breakpad/src/processor/
H A Dstackwalker_x86_unittest.cc286 frame1->context_validity); in TEST_F()
351 frame1->context_validity); in TEST_F()
417 frame1->context_validity); in TEST_F()
545 frame1->context_validity); in TEST_F()
623 frame1->context_validity); in TEST_F()
721 frame1->context_validity); in TEST_F()
726 EXPECT_EQ(&module2, frame1->module); in TEST_F()
815 frame1->context_validity); in TEST_F()
904 frame1->context_validity); in TEST_F()
983 frame1->context_validity); in TEST_F()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/crashreporter/google-breakpad/src/processor/
H A Dstackwalker_x86_unittest.cc286 frame1->context_validity); in TEST_F()
351 frame1->context_validity); in TEST_F()
417 frame1->context_validity); in TEST_F()
545 frame1->context_validity); in TEST_F()
623 frame1->context_validity); in TEST_F()
721 frame1->context_validity); in TEST_F()
726 EXPECT_EQ(&module2, frame1->module); in TEST_F()
815 frame1->context_validity); in TEST_F()
904 frame1->context_validity); in TEST_F()
983 frame1->context_validity); in TEST_F()
[all …]
/dports/net-im/kopete/kopete-21.12.3/protocols/jabber/libjingle/talk/session/phone/
H A Dwebrtcvideoframe_unittest.cc186 cricket::WebRtcVideoFrame frame1, frame2; in TEST_WEBRTCVIDEOFRAME() local
187 ASSERT_TRUE(LoadFrameNoRepeat(&frame1)); in TEST_WEBRTCVIDEOFRAME()
189 frame1.SetTimeStamp(time_stamp); in TEST_WEBRTCVIDEOFRAME()
191 frame2.Attach(frame1.frame()->Buffer(), frame1.frame()->Size(), in TEST_WEBRTCVIDEOFRAME()
193 frame1.GetElapsedTime(), frame1.GetTimeStamp(), 0); in TEST_WEBRTCVIDEOFRAME()
194 EXPECT_TRUE(IsEqual(frame1, frame2, 0)); in TEST_WEBRTCVIDEOFRAME()
199 EXPECT_EQ(frame1.frame()->Size(), size); in TEST_WEBRTCVIDEOFRAME()
206 ASSERT_TRUE(LoadFrameNoRepeat(&frame1)); in TEST_F()
209 frame1.Detach(&buffer, &size), in TEST_F()
211 frame1.GetElapsedTime(), frame1.GetTimeStamp(), 0); in TEST_F()
[all …]
/dports/www/trafficserver/trafficserver-9.1.1/proxy/http3/test/
H A Dtest_Http3Frame.cc47 CHECK(frame1->type() == Http3FrameType::DATA);
48 CHECK(frame1->length() == 4);
64 CHECK(frame1->type() == Http3FrameType::DATA);
65 CHECK(frame1->length() == 4);
206 CHECK(frame1);
207 CHECK(frame1->type() == Http3FrameType::UNKNOWN);
208 CHECK(frame1->length() == 0);
226 CHECK(frame1 != nullptr);
239 CHECK(frame1 == frame2);
250 CHECK(frame1);
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/cast/test/utility/
H A Dvideo_utility.cc21 double I420PSNR(const media::VideoFrame& frame1, in I420PSNR() argument
28 frame1.stride(VideoFrame::kYPlane), in I420PSNR()
30 frame1.stride(VideoFrame::kUPlane), in I420PSNR()
32 frame1.stride(VideoFrame::kVPlane), in I420PSNR()
39 frame1.visible_rect().width(), in I420PSNR()
40 frame1.visible_rect().height()); in I420PSNR()
43 double I420SSIM(const media::VideoFrame& frame1, in I420SSIM() argument
50 frame1.stride(VideoFrame::kYPlane), in I420SSIM()
52 frame1.stride(VideoFrame::kUPlane), in I420SSIM()
61 frame1.visible_rect().width(), in I420SSIM()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/breakpad/breakpad/src/processor/
H A Dstackwalker_x86_unittest.cc287 frame1->context_validity); in TEST_F()
352 frame1->context_validity); in TEST_F()
418 frame1->context_validity); in TEST_F()
546 frame1->context_validity); in TEST_F()
624 frame1->context_validity); in TEST_F()
722 frame1->context_validity); in TEST_F()
727 EXPECT_EQ(&module2, frame1->module); in TEST_F()
816 frame1->context_validity); in TEST_F()
905 frame1->context_validity); in TEST_F()
985 frame1->context_validity); in TEST_F()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/crashreporter/google-breakpad/src/processor/
H A Dstackwalker_x86_unittest.cc287 frame1->context_validity); in TEST_F()
352 frame1->context_validity); in TEST_F()
418 frame1->context_validity); in TEST_F()
546 frame1->context_validity); in TEST_F()
624 frame1->context_validity); in TEST_F()
722 frame1->context_validity); in TEST_F()
727 EXPECT_EQ(&module2, frame1->module); in TEST_F()
816 frame1->context_validity); in TEST_F()
905 frame1->context_validity); in TEST_F()
985 frame1->context_validity); in TEST_F()
[all …]

12345678910>>...89