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

Unified Diff: media/gpu/vaapi_wrapper.cc

Issue 2783673003: Separate stubs for V4L2 and VAAPI. (Closed)
Patch Set: reference correct va_stubs.h Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/gpu/vaapi/va_x11.sigs ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/gpu/vaapi_wrapper.cc
diff --git a/media/gpu/vaapi_wrapper.cc b/media/gpu/vaapi_wrapper.cc
index 21ffdabc4e8af5fad529413845d6c04f9e402edd..b3bf8081bbaf52b5f0d5cbfbc96d88b9f63afaec 100644
--- a/media/gpu/vaapi_wrapper.cc
+++ b/media/gpu/vaapi_wrapper.cc
@@ -16,7 +16,7 @@
#include "build/build_config.h"
// Auto-generated for dlopen libva libraries
-#include "media/gpu/va_stubs.h"
+#include "media/gpu/vaapi/va_stubs.h"
#include "media/gpu/vaapi_picture.h"
#include "third_party/libyuv/include/libyuv.h"
@@ -32,14 +32,14 @@
#include "ui/ozone/public/surface_factory_ozone.h"
#endif // USE_X11
-using media_gpu::kModuleVa;
+using media_gpu_vaapi::kModuleVa;
#if defined(USE_X11)
-using media_gpu::kModuleVa_x11;
+using media_gpu_vaapi::kModuleVa_x11;
#elif defined(USE_OZONE)
-using media_gpu::kModuleVa_drm;
+using media_gpu_vaapi::kModuleVa_drm;
#endif // USE_X11
-using media_gpu::InitializeStubs;
-using media_gpu::StubPathMap;
+using media_gpu_vaapi::InitializeStubs;
+using media_gpu_vaapi::StubPathMap;
#define LOG_VA_ERROR_AND_REPORT(va_error, err_msg) \
do { \
« no previous file with comments | « media/gpu/vaapi/va_x11.sigs ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698