Skip to content

Commit

Permalink
Fixed libyuv headers paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
noiseless committed Dec 29, 2021
1 parent 6708e0d commit b6e101f
Show file tree
Hide file tree
Showing 18 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions src/api/video/i010_buffer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
#include "api/video/i420_buffer.h"
#include "rtc_base/checks.h"
#include "rtc_base/ref_counted_object.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "third_party/libyuv/include/libyuv/scale.h"
#include "libyuv/convert.h"
#include "libyuv/scale.h"

// Aligning pointer to 64 bytes for improved performance, e.g. use SIMD.
static const int kBufferAlignment = 64;
Expand Down
6 changes: 3 additions & 3 deletions src/api/video/i420_buffer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

#include "rtc_base/checks.h"
#include "rtc_base/ref_counted_object.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "third_party/libyuv/include/libyuv/planar_functions.h"
#include "third_party/libyuv/include/libyuv/scale.h"
#include "libyuv/convert.h"
#include "libyuv/planar_functions.h"
#include "libyuv/scale.h"

// Aligning pointer to 64 bytes for improved performance, e.g. use SIMD.
static const int kBufferAlignment = 64;
Expand Down
4 changes: 2 additions & 2 deletions src/api/video/nv12_buffer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#include "api/video/i420_buffer.h"
#include "rtc_base/checks.h"
#include "rtc_base/ref_counted_object.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "third_party/libyuv/include/libyuv/scale.h"
#include "libyuv/convert.h"
#include "libyuv/scale.h"

namespace webrtc {

Expand Down
2 changes: 1 addition & 1 deletion src/common_video/libyuv/libyuv_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/

#include "third_party/libyuv/include/libyuv.h"
#include "libyuv.h"

#include <math.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion src/common_video/libyuv/webrtc_libyuv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include "api/video/i420_buffer.h"
#include "common_video/include/video_frame_buffer.h"
#include "rtc_base/checks.h"
#include "third_party/libyuv/include/libyuv.h"
#include "libyuv.h"

namespace webrtc {

Expand Down
2 changes: 1 addition & 1 deletion src/common_video/video_frame_buffer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "api/video/i420_buffer.h"
#include "rtc_base/checks.h"
#include "rtc_base/ref_counted_object.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "libyuv/convert.h"

namespace webrtc {

Expand Down
2 changes: 1 addition & 1 deletion src/modules/desktop_capture/desktop_frame.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "modules/desktop_capture/desktop_capture_types.h"
#include "modules/desktop_capture/desktop_geometry.h"
#include "rtc_base/checks.h"
#include "third_party/libyuv/include/libyuv/planar_functions.h"
#include "libyuv/planar_functions.h"

namespace webrtc {

Expand Down
2 changes: 1 addition & 1 deletion src/modules/desktop_capture/desktop_frame_rotation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "modules/desktop_capture/desktop_frame_rotation.h"

#include "rtc_base/checks.h"
#include "third_party/libyuv/include/libyuv/rotate_argb.h"
#include "libyuv/rotate_argb.h"

namespace webrtc {

Expand Down
2 changes: 1 addition & 1 deletion src/modules/video_capture/video_capture_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "rtc_base/ref_counted_object.h"
#include "rtc_base/time_utils.h"
#include "rtc_base/trace_event.h"
#include "third_party/libyuv/include/libyuv.h"
#include "libyuv.h"

namespace webrtc {
namespace videocapturemodule {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/video_coding/codecs/av1/libaom_av1_decoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include "rtc_base/logging.h"
#include "third_party/libaom/source/libaom/aom/aom_decoder.h"
#include "third_party/libaom/source/libaom/aom/aomdx.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "libyuv/convert.h"

namespace webrtc {
namespace {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/video_coding/codecs/h264/h264_decoder_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ extern "C" {
#include "rtc_base/logging.h"
#include "system_wrappers/include/field_trial.h"
#include "system_wrappers/include/metrics.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "libyuv/convert.h"

namespace webrtc {

Expand Down
4 changes: 2 additions & 2 deletions src/modules/video_coding/codecs/h264/h264_encoder_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
#include "rtc_base/logging.h"
#include "rtc_base/time_utils.h"
#include "system_wrappers/include/metrics.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "third_party/libyuv/include/libyuv/scale.h"
#include "libyuv/convert.h"
#include "libyuv/scale.h"
#include <wels/codec_api.h>
#include <wels/codec_app_def.h>
#include <wels/codec_def.h>
Expand Down
4 changes: 2 additions & 2 deletions src/modules/video_coding/codecs/test/videoprocessor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
#include "rtc_base/task_utils/to_queued_task.h"
#include "rtc_base/time_utils.h"
#include "test/gtest.h"
#include "third_party/libyuv/include/libyuv/compare.h"
#include "third_party/libyuv/include/libyuv/scale.h"
#include "libyuv/compare.h"
#include "libyuv/scale.h"

namespace webrtc {
namespace test {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/video_coding/codecs/vp8/libvpx_vp8_decoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "rtc_base/time_utils.h"
#include "system_wrappers/include/field_trial.h"
#include "system_wrappers/include/metrics.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "libyuv/convert.h"
#include "vpx/vp8.h"
#include "vpx/vp8dx.h"
#include "vpx/vpx_decoder.h"
Expand Down
2 changes: 1 addition & 1 deletion src/modules/video_coding/codecs/vp8/libvpx_vp8_encoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include "rtc_base/logging.h"
#include "rtc_base/trace_event.h"
#include "system_wrappers/include/field_trial.h"
#include "third_party/libyuv/include/libyuv/scale.h"
#include "libyuv/scale.h"
#include "vpx/vp8cx.h"

namespace webrtc {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/video_coding/codecs/vp9/libvpx_vp9_decoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include "modules/video_coding/utility/vp9_uncompressed_header_parser.h"
#include "rtc_base/checks.h"
#include "rtc_base/logging.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "libyuv/convert.h"
#include "vpx/vp8dx.h"
#include "vpx/vpx_decoder.h"

Expand Down
2 changes: 1 addition & 1 deletion src/modules/video_coding/codecs/vp9/libvpx_vp9_encoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include "rtc_base/strings/string_builder.h"
#include "rtc_base/time_utils.h"
#include "rtc_base/trace_event.h"
#include "third_party/libyuv/include/libyuv/convert.h"
#include "libyuv/convert.h"
#include "vpx/vp8cx.h"
#include "vpx/vpx_encoder.h"

Expand Down
2 changes: 1 addition & 1 deletion src/modules/video_processing/video_denoiser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <string.h>

#include "api/video/i420_buffer.h"
#include "third_party/libyuv/include/libyuv/planar_functions.h"
#include "libyuv/planar_functions.h"

namespace webrtc {

Expand Down

0 comments on commit b6e101f

Please sign in to comment.