Chromium Code Reviews| 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 #ifndef CHROME_RENDERER_MEDIA_CAST_SESSION_H_ | 5 #ifndef CHROME_RENDERER_MEDIA_CAST_SESSION_H_ |
| 6 #define CHROME_RENDERER_MEDIA_CAST_SESSION_H_ | 6 #define CHROME_RENDERER_MEDIA_CAST_SESSION_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 35 // This class represents a Cast session and allows the session to be | 35 // This class represents a Cast session and allows the session to be |
| 36 // configured on the main thread. Actual work is forwarded to | 36 // configured on the main thread. Actual work is forwarded to |
| 37 // CastSessionDelegate on the IO thread. | 37 // CastSessionDelegate on the IO thread. |
| 38 class CastSession : public base::RefCounted<CastSession> { | 38 class CastSession : public base::RefCounted<CastSession> { |
| 39 public: | 39 public: |
| 40 typedef | 40 typedef |
| 41 base::Callback<void(const scoped_refptr<media::cast::FrameInput>&)> | 41 base::Callback<void(const scoped_refptr<media::cast::FrameInput>&)> |
| 42 FrameInputAvailableCallback; | 42 FrameInputAvailableCallback; |
| 43 typedef base::Callback<void(const std::vector<char>&)> SendPacketCallback; | 43 typedef base::Callback<void(const std::vector<char>&)> SendPacketCallback; |
| 44 typedef base::Callback<void(scoped_ptr<std::string>)> EventLogsCallback; | 44 typedef base::Callback<void(scoped_ptr<std::string>)> EventLogsCallback; |
| 45 typedef base::Callback<void(scoped_ptr<std::string>)> StatsCallback; | |
| 45 | 46 |
| 46 CastSession(); | 47 CastSession(); |
| 47 | 48 |
| 48 // Start encoding of audio and video using the provided configuration. | 49 // Start encoding of audio and video using the provided configuration. |
| 49 // | 50 // |
| 50 // When Cast sender is started and ready to be used | 51 // When Cast sender is started and ready to be used |
| 51 // media::cast::FrameInput will be given through the callback. The | 52 // media::cast::FrameInput will be given through the callback. The |
| 52 // callback will be made on the main thread. | 53 // callback will be made on the main thread. |
| 53 void StartAudio(const media::cast::AudioSenderConfig& config, | 54 void StartAudio(const media::cast::AudioSenderConfig& config, |
| 54 const FrameInputAvailableCallback& callback); | 55 const FrameInputAvailableCallback& callback); |
| 55 void StartVideo(const media::cast::VideoSenderConfig& config, | 56 void StartVideo(const media::cast::VideoSenderConfig& config, |
| 56 const FrameInputAvailableCallback& callback); | 57 const FrameInputAvailableCallback& callback); |
| 57 void StartUDP(const net::IPEndPoint& local_endpoint, | 58 void StartUDP(const net::IPEndPoint& local_endpoint, |
| 58 const net::IPEndPoint& remote_endpoint); | 59 const net::IPEndPoint& remote_endpoint); |
| 59 | 60 |
| 60 // Creates or destroys event subscriber for the audio or video stream. | 61 // Creates or destroys event subscriber for the audio or video stream. |
| 61 // |is_audio|: true if the event subscriber is for audio. Video otherwise. | 62 // |is_audio|: true if the event subscriber is for audio. Video otherwise. |
| 62 // |enable|: If true, creates an event subscriber. Otherwise destroys | 63 // |enable|: If true, creates an event subscriber. Otherwise destroys |
| 63 // existing subscriber and discards logs. | 64 // existing subscriber and discards logs. |
| 64 void ToggleLogging(bool is_audio, bool enable); | 65 void ToggleLogging(bool is_audio, bool enable); |
| 65 | 66 |
| 66 // Returns raw event logs in serialized format for either the audio or video | 67 // Returns raw event logs in serialized format for either the audio or video |
| 67 // stream since last call and returns result in |callback|. | 68 // stream since last call and returns result in |callback|. |
| 68 void GetEventLogsAndReset(bool is_audio, const EventLogsCallback& callback); | 69 void GetEventLogsAndReset(bool is_audio, const EventLogsCallback& callback); |
| 69 | 70 |
| 71 // Returns stats in a string formatted in JSON for either the audio or video | |
| 72 // stream since last call and returns result in |callback|. | |
| 73 void GetStatsAndReset(bool is_audio, const StatsCallback& callback); | |
|
Alpha Left Google
2014/03/03 07:11:39
Statistics is continuous unlike events. So "AndRes
imcheng
2014/03/04 02:06:24
In the implementation we will probably do a reset
| |
| 74 | |
| 70 private: | 75 private: |
| 71 friend class base::RefCounted<CastSession>; | 76 friend class base::RefCounted<CastSession>; |
| 72 virtual ~CastSession(); | 77 virtual ~CastSession(); |
| 73 | 78 |
| 74 // This member should never be dereferenced on the main thread. | 79 // This member should never be dereferenced on the main thread. |
| 75 // CastSessionDelegate lives only on the IO thread. It is always | 80 // CastSessionDelegate lives only on the IO thread. It is always |
| 76 // safe to post task on the IO thread to access CastSessionDelegate | 81 // safe to post task on the IO thread to access CastSessionDelegate |
| 77 // because it is owned by this object. | 82 // because it is owned by this object. |
| 78 scoped_ptr<CastSessionDelegate> delegate_; | 83 scoped_ptr<CastSessionDelegate> delegate_; |
| 79 | 84 |
| 80 // Proxy to the IO message loop. | 85 // Proxy to the IO message loop. |
| 81 const scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; | 86 const scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; |
| 82 | 87 |
| 83 DISALLOW_COPY_AND_ASSIGN(CastSession); | 88 DISALLOW_COPY_AND_ASSIGN(CastSession); |
| 84 }; | 89 }; |
| 85 | 90 |
| 86 #endif // CHROME_RENDERER_MEDIA_CAST_SESSION_H_ | 91 #endif // CHROME_RENDERER_MEDIA_CAST_SESSION_H_ |
| OLD | NEW |