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

Unified Diff: media/filters/gpu_video_decoder.cc

Issue 12879010: GpuVideoDecoder: fix OS_WIN define. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/gpu_video_decoder.cc
diff --git a/media/filters/gpu_video_decoder.cc b/media/filters/gpu_video_decoder.cc
index 59e4f60c489f31d4899d882a69a29a92783583cc..cd3b1be89b4a18d03f0c3aa988026c8fa524f76c 100644
--- a/media/filters/gpu_video_decoder.cc
+++ b/media/filters/gpu_video_decoder.cc
@@ -137,7 +137,7 @@ void GpuVideoDecoder::Initialize(const scoped_refptr<DemuxerStream>& stream,
bool hw_large_video_support =
cpu.vendor_name() == "GenuineIntel" && cpu.model() >= 58;
bool os_large_video_support = true;
-#if defined(OS_WINDOWS)
+#if defined(OS_WIN)
os_large_video_support = false;
#endif
if (!(os_large_video_support && hw_large_video_support)) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698