OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 | 72 |
73 rtc::scoped_refptr<VideoTrackInterface> | 73 rtc::scoped_refptr<VideoTrackInterface> |
74 CreateVideoTrack(const std::string& id, | 74 CreateVideoTrack(const std::string& id, |
75 VideoSourceInterface* video_source) override; | 75 VideoSourceInterface* video_source) override; |
76 | 76 |
77 rtc::scoped_refptr<AudioTrackInterface> | 77 rtc::scoped_refptr<AudioTrackInterface> |
78 CreateAudioTrack(const std::string& id, | 78 CreateAudioTrack(const std::string& id, |
79 AudioSourceInterface* audio_source) override; | 79 AudioSourceInterface* audio_source) override; |
80 | 80 |
81 bool StartAecDump(rtc::PlatformFile file) override; | 81 bool StartAecDump(rtc::PlatformFile file) override; |
| 82 bool StartRtcEventLog(rtc::PlatformFile file) override; |
| 83 void StopRtcEventLog() override; |
82 | 84 |
83 virtual cricket::ChannelManager* channel_manager(); | 85 virtual cricket::ChannelManager* channel_manager(); |
84 virtual rtc::Thread* signaling_thread(); | 86 virtual rtc::Thread* signaling_thread(); |
85 virtual rtc::Thread* worker_thread(); | 87 virtual rtc::Thread* worker_thread(); |
86 const Options& options() const { return options_; } | 88 const Options& options() const { return options_; } |
87 | 89 |
88 protected: | 90 protected: |
89 PeerConnectionFactory(); | 91 PeerConnectionFactory(); |
90 PeerConnectionFactory( | 92 PeerConnectionFactory( |
91 rtc::Thread* worker_thread, | 93 rtc::Thread* worker_thread, |
(...skipping 23 matching lines...) Expand all Loading... |
115 // injected any. In that case, video engine will use the internal SW decoder. | 117 // injected any. In that case, video engine will use the internal SW decoder. |
116 rtc::scoped_ptr<cricket::WebRtcVideoDecoderFactory> | 118 rtc::scoped_ptr<cricket::WebRtcVideoDecoderFactory> |
117 video_decoder_factory_; | 119 video_decoder_factory_; |
118 | 120 |
119 rtc::scoped_refptr<RefCountedDtlsIdentityStore> dtls_identity_store_; | 121 rtc::scoped_refptr<RefCountedDtlsIdentityStore> dtls_identity_store_; |
120 }; | 122 }; |
121 | 123 |
122 } // namespace webrtc | 124 } // namespace webrtc |
123 | 125 |
124 #endif // TALK_APP_WEBRTC_PEERCONNECTIONFACTORY_H_ | 126 #endif // TALK_APP_WEBRTC_PEERCONNECTIONFACTORY_H_ |
OLD | NEW |