Skip to content

Commit

Permalink
PR #13598 from Eran: fix width instead on height in dds-adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
maloel authored Dec 12, 2024
2 parents 3bae65c + 187ee1e commit cd49a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/dds/dds-adapter/lrs-device-controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ lrs_device_controller::lrs_device_controller( rs2::device dev, std::shared_ptr<
( static_cast< long double >( f.get_timestamp() ) / 1e3 );

realdds::topics::image_msg image;
image.set_height( video->get_image_header().width );
image.set_height( video->get_image_header().height );
image.set_width( video->get_image_header().width );
image.set_timestamp( timestamp );
auto data = static_cast< const uint8_t * >( f.get_data() );
Expand Down

0 comments on commit cd49a9b

Please sign in to comment.