| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This is the main interface for the cast transport sender. The cast sender | 5 // This is the main interface for the cast transport sender. The cast sender |
| 6 // handles the cast pipeline from encoded frames (both audio and video), to | 6 // handles the cast pipeline from encoded frames (both audio and video), to |
| 7 // encryption, packetization and transport. | 7 // encryption, packetization and transport. |
| 8 // All configurations are done at creation. | 8 // All configurations are done at creation. |
| 9 | 9 |
| 10 // Construction of the Cast Sender and the Cast Transport Sender should be done | 10 // Construction of the Cast Sender and the Cast Transport Sender should be done |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 // due to the weak pointers in the ReceivedPacket method in cast_sender_impl.cc. | 21 // due to the weak pointers in the ReceivedPacket method in cast_sender_impl.cc. |
| 22 | 22 |
| 23 #ifndef MEDIA_CAST_TRANSPORT_CAST_TRANSPORT_SENDER_H_ | 23 #ifndef MEDIA_CAST_TRANSPORT_CAST_TRANSPORT_SENDER_H_ |
| 24 #define MEDIA_CAST_TRANSPORT_CAST_TRANSPORT_SENDER_H_ | 24 #define MEDIA_CAST_TRANSPORT_CAST_TRANSPORT_SENDER_H_ |
| 25 | 25 |
| 26 #include "base/basictypes.h" | 26 #include "base/basictypes.h" |
| 27 #include "base/callback.h" | 27 #include "base/callback.h" |
| 28 #include "base/single_thread_task_runner.h" | 28 #include "base/single_thread_task_runner.h" |
| 29 #include "base/threading/non_thread_safe.h" | 29 #include "base/threading/non_thread_safe.h" |
| 30 #include "base/time/tick_clock.h" | 30 #include "base/time/tick_clock.h" |
| 31 #include "media/cast/logging/logging_defines.h" |
| 31 #include "media/cast/transport/cast_transport_config.h" | 32 #include "media/cast/transport/cast_transport_config.h" |
| 32 #include "media/cast/transport/cast_transport_defines.h" | 33 #include "media/cast/transport/cast_transport_defines.h" |
| 33 | 34 |
| 34 namespace media { | 35 namespace media { |
| 35 namespace cast { | 36 namespace cast { |
| 36 namespace transport { | 37 namespace transport { |
| 37 | 38 |
| 38 typedef base::Callback<void(CastTransportStatus status)> | 39 typedef base::Callback<void(CastTransportStatus status)> |
| 39 CastTransportStatusCallback; | 40 CastTransportStatusCallback; |
| 40 | 41 |
| 41 typedef base::Callback<void(const RtcpSenderInfo& sender_info, | 42 typedef base::Callback<void(const RtcpSenderInfo& sender_info, |
| 42 base::TimeTicks time_sent, | 43 base::TimeTicks time_sent, |
| 43 uint32 rtp_timestamp)> CastTransportRtpStatistics; | 44 uint32 rtp_timestamp)> CastTransportRtpStatistics; |
| 44 | 45 |
| 46 typedef base::Callback<void(const std::vector<PacketEvent>&)> |
| 47 BulkRawEventsCallback; |
| 48 |
| 45 // The application should only trigger this class from the transport thread. | 49 // The application should only trigger this class from the transport thread. |
| 46 class CastTransportSender : public base::NonThreadSafe { | 50 class CastTransportSender : public base::NonThreadSafe { |
| 47 public: | 51 public: |
| 48 static CastTransportSender* CreateCastTransportSender( | 52 static CastTransportSender* CreateCastTransportSender( |
| 49 base::TickClock* clock, | 53 base::TickClock* clock, |
| 50 const CastTransportConfig& config, | 54 const CastTransportConfig& config, |
| 55 const CastLoggingConfig& logging_config, |
| 51 const CastTransportStatusCallback& status_callback, | 56 const CastTransportStatusCallback& status_callback, |
| 57 const BulkRawEventsCallback& raw_events_callback, |
| 52 const scoped_refptr<base::SingleThreadTaskRunner>& transport_task_runner); | 58 const scoped_refptr<base::SingleThreadTaskRunner>& transport_task_runner); |
| 53 | 59 |
| 54 virtual ~CastTransportSender() {} | 60 virtual ~CastTransportSender() {} |
| 55 | 61 |
| 56 // Sets the Cast packet receiver. Should be called after creation on the | 62 // Sets the Cast packet receiver. Should be called after creation on the |
| 57 // Cast sender. Packets won't be received until this function is called. | 63 // Cast sender. Packets won't be received until this function is called. |
| 58 virtual void SetPacketReceiver( | 64 virtual void SetPacketReceiver( |
| 59 const PacketReceiverCallback& packet_receiver) = 0; | 65 const PacketReceiverCallback& packet_receiver) = 0; |
| 60 | 66 |
| 61 // The following two functions handle the encoded media frames (audio and | 67 // The following two functions handle the encoded media frames (audio and |
| (...skipping 26 matching lines...) Expand all Loading... |
| 88 | 94 |
| 89 virtual void SubscribeVideoRtpStatsCallback( | 95 virtual void SubscribeVideoRtpStatsCallback( |
| 90 const CastTransportRtpStatistics& callback) = 0; | 96 const CastTransportRtpStatistics& callback) = 0; |
| 91 }; | 97 }; |
| 92 | 98 |
| 93 } // namespace transport | 99 } // namespace transport |
| 94 } // namespace cast | 100 } // namespace cast |
| 95 } // namespace media | 101 } // namespace media |
| 96 | 102 |
| 97 #endif // MEDIA_CAST_TRANSPORT_CAST_TRANSPORT_SENDER_H_ | 103 #endif // MEDIA_CAST_TRANSPORT_CAST_TRANSPORT_SENDER_H_ |
| OLD | NEW |