summaryrefslogtreecommitdiffstats
path: root/remoting/codec
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/codec')
-rw-r--r--remoting/codec/BUILD.gn2
-rw-r--r--remoting/codec/scoped_vpx_codec.cc2
-rw-r--r--remoting/codec/video_decoder_vpx.cc4
-rw-r--r--remoting/codec/video_encoder_vpx.cc4
4 files changed, 6 insertions, 6 deletions
diff --git a/remoting/codec/BUILD.gn b/remoting/codec/BUILD.gn
index 4a2cd73..d08d83c 100644
--- a/remoting/codec/BUILD.gn
+++ b/remoting/codec/BUILD.gn
@@ -16,7 +16,7 @@ source_set("codec") {
"//media",
"//media:shared_memory_support",
"//remoting/proto",
- "//third_party/libvpx_new",
+ "//third_party/libvpx",
"//third_party/libyuv",
"//third_party/opus",
"//third_party/webrtc/modules/desktop_capture:primitives",
diff --git a/remoting/codec/scoped_vpx_codec.cc b/remoting/codec/scoped_vpx_codec.cc
index dd5c739..dda986e 100644
--- a/remoting/codec/scoped_vpx_codec.cc
+++ b/remoting/codec/scoped_vpx_codec.cc
@@ -8,7 +8,7 @@
extern "C" {
#define VPX_CODEC_DISABLE_COMPAT 1
-#include "third_party/libvpx_new/source/libvpx/vpx/vpx_codec.h"
+#include "third_party/libvpx/source/libvpx/vpx/vpx_codec.h"
}
namespace remoting {
diff --git a/remoting/codec/video_decoder_vpx.cc b/remoting/codec/video_decoder_vpx.cc
index 4d27955..b784a9e 100644
--- a/remoting/codec/video_decoder_vpx.cc
+++ b/remoting/codec/video_decoder_vpx.cc
@@ -17,8 +17,8 @@
extern "C" {
#define VPX_CODEC_DISABLE_COMPAT 1
-#include "third_party/libvpx_new/source/libvpx/vpx/vp8dx.h"
-#include "third_party/libvpx_new/source/libvpx/vpx/vpx_decoder.h"
+#include "third_party/libvpx/source/libvpx/vpx/vp8dx.h"
+#include "third_party/libvpx/source/libvpx/vpx/vpx_decoder.h"
}
namespace remoting {
diff --git a/remoting/codec/video_encoder_vpx.cc b/remoting/codec/video_encoder_vpx.cc
index 2a5894d..ea84859 100644
--- a/remoting/codec/video_encoder_vpx.cc
+++ b/remoting/codec/video_encoder_vpx.cc
@@ -18,8 +18,8 @@
extern "C" {
#define VPX_CODEC_DISABLE_COMPAT 1
-#include "third_party/libvpx_new/source/libvpx/vpx/vp8cx.h"
-#include "third_party/libvpx_new/source/libvpx/vpx/vpx_encoder.h"
+#include "third_party/libvpx/source/libvpx/vpx/vp8cx.h"
+#include "third_party/libvpx/source/libvpx/vpx/vpx_encoder.h"
}
namespace remoting {