Skip to content
Snippets Groups Projects
Commit 74419d62 authored by bodzsoaa's avatar bodzsoaa
Browse files

Add comment for frame_fragment_size_

parent 55b7a782
No related branches found
No related tags found
No related merge requests found
...@@ -97,6 +97,7 @@ void Configuration::LoadSettings() { ...@@ -97,6 +97,7 @@ void Configuration::LoadSettings() {
packet_size_ = packet_size_ =
packet_header_size_ + max_windows_per_datagram_ * window_byte_size_; packet_header_size_ + max_windows_per_datagram_ * window_byte_size_;
packet_payload_size_ = max_windows_per_datagram_ * window_byte_size_; packet_payload_size_ = max_windows_per_datagram_ * window_byte_size_;
// Uncompressed frame fragment byte size
frame_fragment_size_ = max_windows_per_datagram_ * pixels_per_window_ * 3; frame_fragment_size_ = max_windows_per_datagram_ * pixels_per_window_ * 3;
max_packet_number_ = max_packet_number_ =
qCeil(static_cast<qreal>(windows_) / max_windows_per_datagram_); qCeil(static_cast<qreal>(windows_) / max_windows_per_datagram_);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment