OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef TALK_SESSION_MEDIA_CHANNEL_H_ | 11 #ifndef TALK_SESSION_MEDIA_CHANNEL_H_ |
12 #define TALK_SESSION_MEDIA_CHANNEL_H_ | 12 #define TALK_SESSION_MEDIA_CHANNEL_H_ |
13 | 13 |
14 #include <map> | 14 #include <map> |
15 #include <set> | 15 #include <set> |
16 #include <string> | 16 #include <string> |
17 #include <utility> | 17 #include <utility> |
18 #include <vector> | 18 #include <vector> |
19 | 19 |
20 #include "webrtc/audio_sink.h" | 20 #include "webrtc/audio/audio_sink.h" |
21 #include "webrtc/base/asyncudpsocket.h" | 21 #include "webrtc/base/asyncudpsocket.h" |
22 #include "webrtc/base/criticalsection.h" | 22 #include "webrtc/base/criticalsection.h" |
23 #include "webrtc/base/network.h" | 23 #include "webrtc/base/network.h" |
24 #include "webrtc/base/sigslot.h" | 24 #include "webrtc/base/sigslot.h" |
25 #include "webrtc/base/window.h" | 25 #include "webrtc/base/window.h" |
26 #include "webrtc/media/base/mediachannel.h" | 26 #include "webrtc/media/base/mediachannel.h" |
27 #include "webrtc/media/base/mediaengine.h" | 27 #include "webrtc/media/base/mediaengine.h" |
28 #include "webrtc/media/base/streamparams.h" | 28 #include "webrtc/media/base/streamparams.h" |
29 #include "webrtc/media/base/videocapturer.h" | 29 #include "webrtc/media/base/videocapturer.h" |
30 #include "webrtc/media/base/videosinkinterface.h" | 30 #include "webrtc/media/base/videosinkinterface.h" |
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 // SetSendParameters. | 620 // SetSendParameters. |
621 DataSendParameters last_send_params_; | 621 DataSendParameters last_send_params_; |
622 // Last DataRecvParameters sent down to the media_channel() via | 622 // Last DataRecvParameters sent down to the media_channel() via |
623 // SetRecvParameters. | 623 // SetRecvParameters. |
624 DataRecvParameters last_recv_params_; | 624 DataRecvParameters last_recv_params_; |
625 }; | 625 }; |
626 | 626 |
627 } // namespace cricket | 627 } // namespace cricket |
628 | 628 |
629 #endif // TALK_SESSION_MEDIA_CHANNEL_H_ | 629 #endif // TALK_SESSION_MEDIA_CHANNEL_H_ |
OLD | NEW |