aboutsummaryrefslogtreecommitdiff
path: root/webrtc/modules/video_coding/codecs
diff options
context:
space:
mode:
authorpbos <pbos@webrtc.org>2015-11-16 16:39:06 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-17 00:39:10 +0000
commit854e84c7fb61972bd8e39c1482e5f3e31f796b5f (patch)
tree144e8e39eddfe722e6a1c8b546bf71529db473c3 /webrtc/modules/video_coding/codecs
parentc91d1738709b038fee84d569180cba2bbcbfe5d7 (diff)
downloadwebrtc-854e84c7fb61972bd8e39c1482e5f3e31f796b5f.tar.gz
Use webrtc/base/logging.h for video coding/processing.
Replaces system_wrappers' logging.h in video_coding and video_processing. BUG=webrtc:5118 R=stefan@webrtc.org Review URL: https://codereview.webrtc.org/1435873003 Cr-Commit-Position: refs/heads/master@{#10664}
Diffstat (limited to 'webrtc/modules/video_coding/codecs')
-rw-r--r--webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc2
-rw-r--r--webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc b/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc
index bedbe68ca8..62c05d34fa 100644
--- a/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc
+++ b/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc
@@ -16,7 +16,7 @@
#include "vpx/vpx_frame_buffer.h"
#include "webrtc/base/checks.h"
-#include "webrtc/system_wrappers/include/logging.h"
+#include "webrtc/base/logging.h"
namespace webrtc {
diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
index 5053b64d55..db54e113db 100644
--- a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
+++ b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
@@ -23,12 +23,12 @@
#include "webrtc/base/bind.h"
#include "webrtc/base/checks.h"
+#include "webrtc/base/logging.h"
#include "webrtc/base/trace_event.h"
#include "webrtc/common.h"
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
#include "webrtc/modules/include/module_common_types.h"
#include "webrtc/modules/video_coding/codecs/vp9/screenshare_layers.h"
-#include "webrtc/system_wrappers/include/logging.h"
#include "webrtc/system_wrappers/include/tick_util.h"
namespace {