Skip to content

Commit 1e8aa80

Browse files
authored
Merge pull request #2220 from ev-mp/current
Fix stream request for DQT
2 parents 70c07b3 + 2dfa619 commit 1e8aa80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/depth-quality/depth-quality-model.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ namespace rs2
6262
// Use Infrared luminocity as a secondary video in case synthetic chroma is not supported
6363
{
6464
rs2::config cfg_alt;
65-
cfg_alt.enable_stream(RS2_STREAM_DEPTH, 0, 0, 0, RS2_FORMAT_Z16, requested_fps);
66-
cfg_alt.enable_stream(RS2_STREAM_INFRARED, 0, 0, 0, RS2_FORMAT_Y8, requested_fps);
65+
cfg_alt.enable_stream(RS2_STREAM_DEPTH, -1, 0, 0, RS2_FORMAT_Z16, requested_fps);
66+
cfg_alt.enable_stream(RS2_STREAM_INFRARED, -1, 0, 0, RS2_FORMAT_Y8, requested_fps);
6767
cfgs.emplace_back(cfg_alt);
6868
}
6969

0 commit comments

Comments
 (0)