Revert "Limit send_quantum to 30xMSS"

This reverts commit 662a35953f17eb3844e04e1bd578db2e764a9d53.
diff --git a/quiche/src/recovery/bbr/per_ack.rs b/quiche/src/recovery/bbr/per_ack.rs
index 6c85fc2..6fe5651 100644
--- a/quiche/src/recovery/bbr/per_ack.rs
+++ b/quiche/src/recovery/bbr/per_ack.rs
@@ -123,7 +123,7 @@
 
         rate if rate < PACING_RATE_24MBPS => 2 * r.max_datagram_size,
 
-        _ => cmp::min((rate / 1000_u64) as usize, 30 * r.max_datagram_size),
+        _ => cmp::min((rate / 1000_u64) as usize, 64 * 1024),
     }
 }