Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Side by Side Diff: webrtc/video/video_send_stream.cc

Issue 1415413004: Use webrtc/base/logging.h for video. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: redo Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/video/video_receive_stream.cc ('k') | webrtc/video/video_send_stream_tests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_send_stream.h" 11 #include "webrtc/video/video_send_stream.h"
12 12
13 #include <algorithm> 13 #include <algorithm>
14 #include <sstream> 14 #include <sstream>
15 #include <string> 15 #include <string>
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/base/checks.h" 18 #include "webrtc/base/checks.h"
19 #include "webrtc/base/logging.h"
19 #include "webrtc/base/trace_event.h" 20 #include "webrtc/base/trace_event.h"
20 #include "webrtc/call/congestion_controller.h" 21 #include "webrtc/call/congestion_controller.h"
21 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" 22 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
22 #include "webrtc/modules/pacing/include/packet_router.h" 23 #include "webrtc/modules/pacing/include/packet_router.h"
23 #include "webrtc/system_wrappers/interface/logging.h"
24 #include "webrtc/video/video_capture_input.h" 24 #include "webrtc/video/video_capture_input.h"
25 #include "webrtc/video_engine/call_stats.h" 25 #include "webrtc/video_engine/call_stats.h"
26 #include "webrtc/video_engine/encoder_state_feedback.h" 26 #include "webrtc/video_engine/encoder_state_feedback.h"
27 #include "webrtc/video_engine/payload_router.h" 27 #include "webrtc/video_engine/payload_router.h"
28 #include "webrtc/video_engine/vie_channel.h" 28 #include "webrtc/video_engine/vie_channel.h"
29 #include "webrtc/video_engine/vie_defines.h" 29 #include "webrtc/video_engine/vie_defines.h"
30 #include "webrtc/video_engine/vie_encoder.h" 30 #include "webrtc/video_engine/vie_encoder.h"
31 #include "webrtc/video_send_stream.h" 31 #include "webrtc/video_send_stream.h"
32 32
33 namespace webrtc { 33 namespace webrtc {
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 vie_channel_->IsSendingFecEnabled()); 556 vie_channel_->IsSendingFecEnabled());
557 557
558 // Restart the media flow 558 // Restart the media flow
559 vie_encoder_->Restart(); 559 vie_encoder_->Restart();
560 560
561 return true; 561 return true;
562 } 562 }
563 563
564 } // namespace internal 564 } // namespace internal
565 } // namespace webrtc 565 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/video/video_receive_stream.cc ('k') | webrtc/video/video_send_stream_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698