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 a69b7418f963c741139978397567c67d0963f740..a7c2e7c5bca799b5e3d12d3b0033dd81568476ab 100644 |
--- a/media/cast/transport/cast_transport_sender.h |
+++ b/media/cast/transport/cast_transport_sender.h |
@@ -2,9 +2,9 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-// This is the main interface for the cast transport sender. The cast sender |
-// handles the cast pipeline from encoded frames (both audio and video), to |
-// encryption, packetization and transport. |
+// This is the main interface for the cast transport sender. It accepts encoded |
+// frames (both audio and video), then packetizes them and feeds them into a |
+// transport (e.g., UDP). |
// Construction of the Cast Sender and the Cast Transport Sender should be done |
// in the following order: |
@@ -76,7 +76,7 @@ class CastTransportSender : public base::NonThreadSafe { |
// The following two functions handle the encoded media frames (audio and |
// video) to be processed. |
- // Frames will be encrypted, packetized and transmitted to the network. |
+ // Frames will be packetized and transmitted to the network. |
virtual void InsertCodedAudioFrame(const EncodedFrame& audio_frame) = 0; |
virtual void InsertCodedVideoFrame(const EncodedFrame& video_frame) = 0; |