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

Unified Diff: media/cast/net/cast_transport_sender.h

Issue 519443002: Cast: merge InsertCoded{Audio,Video}Frame into InsertFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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_sender.h
diff --git a/media/cast/net/cast_transport_sender.h b/media/cast/net/cast_transport_sender.h
index 9c75d12275372c5041f1ffe2efd8663daf3b9c99..349139f2f4cdd259cda9c06ca52515c4a6bc5c4e 100644
--- a/media/cast/net/cast_transport_sender.h
+++ b/media/cast/net/cast_transport_sender.h
@@ -70,11 +70,10 @@ class CastTransportSender : public base::NonThreadSafe {
const RtcpCastMessageCallback& cast_message_cb,
const RtcpRttCallback& rtt_cb) = 0;
- // The following two functions handle the encoded media frames (audio and
+ // The following function handle the encoded media frames (audio and
miu 2014/08/28 20:45:29 s/handle/handles/ However, perhaps you could fix
hubbe 2014/08/28 22:20:56 Comment updated.
// video) to be processed.
// Frames will be encrypted, packetized and transmitted to the network.
- virtual void InsertCodedAudioFrame(const EncodedFrame& audio_frame) = 0;
- virtual void InsertCodedVideoFrame(const EncodedFrame& video_frame) = 0;
+ virtual void InsertFrame(uint32 ssrc, const EncodedFrame& frame) = 0;
// Sends a RTCP sender report to the receiver.
// |ssrc| is the SSRC for this report.

Powered by Google App Engine
This is Rietveld 408576698