Skip to content

Commit

Permalink
Merge pull request #2220 from ev-mp/current
Browse files Browse the repository at this point in the history
Fix stream request for DQT
  • Loading branch information
ev-mp authored Aug 9, 2018
2 parents 70c07b3 + 2dfa619 commit 1e8aa80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/depth-quality/depth-quality-model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ namespace rs2
// Use Infrared luminocity as a secondary video in case synthetic chroma is not supported
{
rs2::config cfg_alt;
cfg_alt.enable_stream(RS2_STREAM_DEPTH, 0, 0, 0, RS2_FORMAT_Z16, requested_fps);
cfg_alt.enable_stream(RS2_STREAM_INFRARED, 0, 0, 0, RS2_FORMAT_Y8, requested_fps);
cfg_alt.enable_stream(RS2_STREAM_DEPTH, -1, 0, 0, RS2_FORMAT_Z16, requested_fps);
cfg_alt.enable_stream(RS2_STREAM_INFRARED, -1, 0, 0, RS2_FORMAT_Y8, requested_fps);
cfgs.emplace_back(cfg_alt);
}

Expand Down

0 comments on commit 1e8aa80

Please sign in to comment.