| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2014 Google Inc. | 3 * Copyright 2014 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 18 matching lines...) Expand all Loading... |
| 29 #define TALK_MEDIA_WEBRTC_WEBRTCVIDEOENGINE2_H_ | 29 #define TALK_MEDIA_WEBRTC_WEBRTCVIDEOENGINE2_H_ |
| 30 | 30 |
| 31 #include <map> | 31 #include <map> |
| 32 #include <string> | 32 #include <string> |
| 33 #include <vector> | 33 #include <vector> |
| 34 | 34 |
| 35 #include "talk/media/base/mediaengine.h" | 35 #include "talk/media/base/mediaengine.h" |
| 36 #include "talk/media/webrtc/webrtcvideochannelfactory.h" | 36 #include "talk/media/webrtc/webrtcvideochannelfactory.h" |
| 37 #include "talk/media/webrtc/webrtcvideodecoderfactory.h" | 37 #include "talk/media/webrtc/webrtcvideodecoderfactory.h" |
| 38 #include "talk/media/webrtc/webrtcvideoencoderfactory.h" | 38 #include "talk/media/webrtc/webrtcvideoencoderfactory.h" |
| 39 #include "webrtc/base/cpumonitor.h" | |
| 40 #include "webrtc/base/criticalsection.h" | 39 #include "webrtc/base/criticalsection.h" |
| 41 #include "webrtc/base/scoped_ptr.h" | 40 #include "webrtc/base/scoped_ptr.h" |
| 42 #include "webrtc/base/thread_annotations.h" | 41 #include "webrtc/base/thread_annotations.h" |
| 43 #include "webrtc/base/thread_checker.h" | 42 #include "webrtc/base/thread_checker.h" |
| 44 #include "webrtc/call.h" | 43 #include "webrtc/call.h" |
| 45 #include "webrtc/transport.h" | 44 #include "webrtc/transport.h" |
| 46 #include "webrtc/video_frame.h" | 45 #include "webrtc/video_frame.h" |
| 47 #include "webrtc/video_receive_stream.h" | 46 #include "webrtc/video_receive_stream.h" |
| 48 #include "webrtc/video_renderer.h" | 47 #include "webrtc/video_renderer.h" |
| 49 #include "webrtc/video_send_stream.h" | 48 #include "webrtc/video_send_stream.h" |
| 50 | 49 |
| 51 namespace webrtc { | 50 namespace webrtc { |
| 52 class VideoDecoder; | 51 class VideoDecoder; |
| 53 class VideoEncoder; | 52 class VideoEncoder; |
| 54 } | 53 } |
| 55 | 54 |
| 56 namespace rtc { | 55 namespace rtc { |
| 57 class CpuMonitor; | |
| 58 class Thread; | 56 class Thread; |
| 59 } // namespace rtc | 57 } // namespace rtc |
| 60 | 58 |
| 61 namespace cricket { | 59 namespace cricket { |
| 62 | 60 |
| 63 class VideoCapturer; | 61 class VideoCapturer; |
| 64 class VideoFrame; | 62 class VideoFrame; |
| 65 class VideoProcessor; | 63 class VideoProcessor; |
| 66 class VideoRenderer; | 64 class VideoRenderer; |
| 67 class VoiceMediaChannel; | 65 class VoiceMediaChannel; |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 WebRtcVideoDecoderFactory* const external_decoder_factory_; | 535 WebRtcVideoDecoderFactory* const external_decoder_factory_; |
| 538 std::vector<VideoCodecSettings> recv_codecs_; | 536 std::vector<VideoCodecSettings> recv_codecs_; |
| 539 std::vector<webrtc::RtpExtension> recv_rtp_extensions_; | 537 std::vector<webrtc::RtpExtension> recv_rtp_extensions_; |
| 540 webrtc::Call::Config::BitrateConfig bitrate_config_; | 538 webrtc::Call::Config::BitrateConfig bitrate_config_; |
| 541 VideoOptions options_; | 539 VideoOptions options_; |
| 542 }; | 540 }; |
| 543 | 541 |
| 544 } // namespace cricket | 542 } // namespace cricket |
| 545 | 543 |
| 546 #endif // TALK_MEDIA_WEBRTC_WEBRTCVIDEOENGINE2_H_ | 544 #endif // TALK_MEDIA_WEBRTC_WEBRTCVIDEOENGINE2_H_ |
| OLD | NEW |