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

Unified Diff: media/cast/net/cast_transport_config.cc

Issue 654843007: Cast: Increase UDP socket send buffer size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move code Created 6 years, 2 months 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: media/cast/net/cast_transport_config.cc
diff --git a/media/cast/net/cast_transport_config.cc b/media/cast/net/cast_transport_config.cc
index 2543f285f79baf98dc3894f78ce999ad41585ef4..ba116377c3bdd5fe5c2a9d3ea2919164aaf4f48f 100644
--- a/media/cast/net/cast_transport_config.cc
+++ b/media/cast/net/cast_transport_config.cc
@@ -4,6 +4,8 @@
#include "media/cast/net/cast_transport_config.h"
+#include "net/base/net_errors.h"
+
namespace media {
namespace cast {
@@ -30,6 +32,10 @@ void EncodedFrame::CopyMetadataTo(EncodedFrame* dest) const {
dest->reference_time = this->reference_time;
}
+int PacketSender::SetSendBufferSize(int32 size) {
+ return net::OK;
+}
+
RtcpSenderInfo::RtcpSenderInfo()
: ntp_seconds(0),
ntp_fraction(0),

Powered by Google App Engine
This is Rietveld 408576698