| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 #include "webrtc/video/video_receive_stream.h" | 11 #include "webrtc/video/video_receive_stream.h" |
| 12 | 12 |
| 13 #include <stdlib.h> | 13 #include <stdlib.h> |
| 14 | 14 |
| 15 #include <set> | 15 #include <set> |
| 16 #include <string> | 16 #include <string> |
| 17 #include <utility> | 17 #include <utility> |
| 18 | 18 |
| 19 #include "webrtc/base/checks.h" | |
| 20 #include "webrtc/base/location.h" | |
| 21 #include "webrtc/base/logging.h" | |
| 22 #include "webrtc/base/optional.h" | |
| 23 #include "webrtc/base/trace_event.h" | |
| 24 #include "webrtc/call/rtp_stream_receiver_controller_interface.h" | 19 #include "webrtc/call/rtp_stream_receiver_controller_interface.h" |
| 25 #include "webrtc/common_types.h" | 20 #include "webrtc/common_types.h" |
| 26 #include "webrtc/common_video/h264/profile_level_id.h" | 21 #include "webrtc/common_video/h264/profile_level_id.h" |
| 27 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 22 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
| 28 #include "webrtc/modules/rtp_rtcp/include/rtp_receiver.h" | 23 #include "webrtc/modules/rtp_rtcp/include/rtp_receiver.h" |
| 29 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" | 24 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" |
| 30 #include "webrtc/modules/utility/include/process_thread.h" | 25 #include "webrtc/modules/utility/include/process_thread.h" |
| 31 #include "webrtc/modules/video_coding/frame_object.h" | 26 #include "webrtc/modules/video_coding/frame_object.h" |
| 32 #include "webrtc/modules/video_coding/include/video_coding.h" | 27 #include "webrtc/modules/video_coding/include/video_coding.h" |
| 33 #include "webrtc/modules/video_coding/jitter_estimator.h" | 28 #include "webrtc/modules/video_coding/jitter_estimator.h" |
| 34 #include "webrtc/modules/video_coding/timing.h" | 29 #include "webrtc/modules/video_coding/timing.h" |
| 35 #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" | 30 #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" |
| 31 #include "webrtc/rtc_base/checks.h" |
| 32 #include "webrtc/rtc_base/location.h" |
| 33 #include "webrtc/rtc_base/logging.h" |
| 34 #include "webrtc/rtc_base/optional.h" |
| 35 #include "webrtc/rtc_base/trace_event.h" |
| 36 #include "webrtc/system_wrappers/include/clock.h" | 36 #include "webrtc/system_wrappers/include/clock.h" |
| 37 #include "webrtc/system_wrappers/include/field_trial.h" | 37 #include "webrtc/system_wrappers/include/field_trial.h" |
| 38 #include "webrtc/video/call_stats.h" | 38 #include "webrtc/video/call_stats.h" |
| 39 #include "webrtc/video/receive_statistics_proxy.h" | 39 #include "webrtc/video/receive_statistics_proxy.h" |
| 40 #include "webrtc/video_receive_stream.h" | 40 #include "webrtc/video_receive_stream.h" |
| 41 | 41 |
| 42 namespace webrtc { | 42 namespace webrtc { |
| 43 | 43 |
| 44 std::string VideoReceiveStream::Decoder::ToString() const { | 44 std::string VideoReceiveStream::Decoder::ToString() const { |
| 45 std::stringstream ss; | 45 std::stringstream ss; |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 if (stream_is_active && !receiving_keyframe) { | 512 if (stream_is_active && !receiving_keyframe) { |
| 513 LOG(LS_WARNING) << "No decodable frame in " << kMaxWaitForFrameMs | 513 LOG(LS_WARNING) << "No decodable frame in " << kMaxWaitForFrameMs |
| 514 << " ms, requesting keyframe."; | 514 << " ms, requesting keyframe."; |
| 515 RequestKeyFrame(); | 515 RequestKeyFrame(); |
| 516 } | 516 } |
| 517 } | 517 } |
| 518 return true; | 518 return true; |
| 519 } | 519 } |
| 520 } // namespace internal | 520 } // namespace internal |
| 521 } // namespace webrtc | 521 } // namespace webrtc |
| OLD | NEW |