From d2102afa2a8c61aec350edff0351fe9261284543 Mon Sep 17 00:00:00 2001 From: "tnakamura@webrtc.org" Date: Wed, 17 Jul 2013 18:48:24 +0000 Subject: [PATCH] Undo libvpx include changes in r4348 to fix build. A longer term fix is needed, but this at least quickly unblocks the build. R=pbos@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1816005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4367 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../video_coding/codecs/vp8/default_temporal_layers.cc | 4 ++-- .../codecs/vp8/default_temporal_layers_unittest.cc | 4 ++-- .../codecs/vp8/reference_picture_selection.cc | 4 ++-- .../codecs/vp8/reference_picture_selection_unittest.cc | 4 ++-- webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc | 8 ++++---- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.cc b/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.cc index 9429ebf0db..42ddec35cf 100644 --- a/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.cc +++ b/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.cc @@ -17,8 +17,8 @@ #include "webrtc/modules/video_coding/codecs/interface/video_codec_interface.h" #include "webrtc/modules/video_coding/codecs/vp8/include/vp8_common_types.h" -#include "third_party/libvpx/source/libvpx/vpx/vpx_encoder.h" -#include "third_party/libvpx/source/libvpx/vpx/vp8cx.h" +#include "vpx/vpx_encoder.h" +#include "vpx/vp8cx.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers_unittest.cc b/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers_unittest.cc index ae8eb7a40a..34121cbcf6 100644 --- a/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers_unittest.cc +++ b/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers_unittest.cc @@ -13,8 +13,8 @@ #include "webrtc/modules/video_coding/codecs/interface/video_codec_interface.h" #include "webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.h" -#include "third_party/libvpx/source/libvpx/vpx/vpx_encoder.h" -#include "third_party/libvpx/source/libvpx/vpx/vp8cx.h" +#include "vpx/vpx_encoder.h" +#include "vpx/vp8cx.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp8/reference_picture_selection.cc b/webrtc/modules/video_coding/codecs/vp8/reference_picture_selection.cc index 8a23f3960c..5e258c37b9 100644 --- a/webrtc/modules/video_coding/codecs/vp8/reference_picture_selection.cc +++ b/webrtc/modules/video_coding/codecs/vp8/reference_picture_selection.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/video_coding/codecs/vp8/reference_picture_selection.h" +#include "vpx/vpx_encoder.h" +#include "vpx/vp8cx.h" #include "webrtc/typedefs.h" -#include "third_party/libvpx/source/libvpx/vpx/vpx_encoder.h" -#include "third_party/libvpx/source/libvpx/vpx/vp8cx.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp8/reference_picture_selection_unittest.cc b/webrtc/modules/video_coding/codecs/vp8/reference_picture_selection_unittest.cc index 4a1ea9a331..c6474e5bd1 100644 --- a/webrtc/modules/video_coding/codecs/vp8/reference_picture_selection_unittest.cc +++ b/webrtc/modules/video_coding/codecs/vp8/reference_picture_selection_unittest.cc @@ -9,9 +9,9 @@ */ #include "testing/gtest/include/gtest/gtest.h" +#include "vpx/vpx_encoder.h" +#include "vpx/vp8cx.h" #include "webrtc/modules/video_coding/codecs/vp8/reference_picture_selection.h" -#include "third_party/libvpx/source/libvpx/vpx/vpx_encoder.h" -#include "third_party/libvpx/source/libvpx/vpx/vp8cx.h" using webrtc::ReferencePictureSelection; diff --git a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc index ba7a9030b2..488d951c85 100644 --- a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc +++ b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc @@ -18,10 +18,10 @@ #include #include -#include "third_party/libvpx/source/libvpx/vpx/vpx_encoder.h" -#include "third_party/libvpx/source/libvpx/vpx/vpx_decoder.h" -#include "third_party/libvpx/source/libvpx/vpx/vp8cx.h" -#include "third_party/libvpx/source/libvpx/vpx/vp8dx.h" +#include "vpx/vpx_encoder.h" +#include "vpx/vpx_decoder.h" +#include "vpx/vp8cx.h" +#include "vpx/vp8dx.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" #include "webrtc/modules/interface/module_common_types.h"