Skip to content

Commit 7a9c652

Browse files
committed
Added checks for RVC4
1 parent d78a9cf commit 7a9c652

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/src/ondevice_tests/encoded_frame_test.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ TEST_CASE("OLD_OUTPUT") {
2929

3030
TEST_CASE("JPEG_ENCODING_LOSSLESS") {
3131
dai::Pipeline pipeline;
32+
if(pipeline.getDefaultDevice()->getPlatform() == dai::Platform::RVC4) {
33+
return;
34+
}
35+
3236
auto camNode = pipeline.create<dai::node::Camera>()->build();
3337
auto camOut = camNode->requestOutput({640, 480}, dai::ImgFrame::Type::NV12);
3438
auto encNode = pipeline.create<dai::node::VideoEncoder>();

0 commit comments

Comments
 (0)