Index: media/cast/transport/cast_transport_sender.h |
diff --git a/media/cast/transport/cast_transport_sender.h b/media/cast/transport/cast_transport_sender.h |
index 5c1eb04b416400c861aaf1a6a5d1f2e5a19e32e7..822fa8159828716cccca5f9847018ff0726651b6 100644 |
--- a/media/cast/transport/cast_transport_sender.h |
+++ b/media/cast/transport/cast_transport_sender.h |
@@ -92,9 +92,15 @@ class CastTransportSender : public base::NonThreadSafe { |
const std::string& c_name) = 0; |
// Retransmission request. |
+ // |missing_packets| includes the list of frames and packets in each |
+ // frame to be re-transmitted. |
+ // If |cancel_rtx_not_in_list| is used as an optimization to cancel |
dcheng
2014/06/11 17:02:47
Nit: no "If" here? Not sure how to parse this comm
|
+ // pending re-transmission requests of packets not listed in |
+ // |missing_packets|. |
virtual void ResendPackets( |
bool is_audio, |
- const MissingFramesAndPacketsMap& missing_packets) = 0; |
+ const MissingFramesAndPacketsMap& missing_packets, |
+ bool cancel_rtx_not_in_list) = 0; |
}; |
} // namespace transport |