Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: chrome/renderer/media/cast_rtp_stream.h

Issue 121543003: Set AES key and IV mask to CastSender (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/media/cast_rtp_stream.h
diff --git a/chrome/renderer/media/cast_rtp_stream.h b/chrome/renderer/media/cast_rtp_stream.h
index 08995c87104a33a28afeeba21b9e8b213ce9ad8b..00c94fd174cfd05d9b09b3d52cc93559c112883a 100644
--- a/chrome/renderer/media/cast_rtp_stream.h
+++ b/chrome/renderer/media/cast_rtp_stream.h
@@ -56,6 +56,12 @@ struct CastRtpPayloadParams {
// Name of the codec used.
std::string codec_name;
+ // AES encryption key.
+ std::string aes_key;
+
+ // AES encryption IV mask.
+ std::string aes_iv_mask;
+
// List of codec specific parameters.
std::vector<CastCodecSpecificParams> codec_specific_params;
@@ -71,9 +77,6 @@ struct CastRtpCaps {
// Names of supported RTCP features.
std::vector<std::string> rtcp_features;
- // Names of supported FEC (Forward Error Correction) mechanisms.
- std::vector<std::string> fec_mechanisms;
-
CastRtpCaps();
~CastRtpCaps();
};

Powered by Google App Engine
This is Rietveld 408576698