Index: media/base/video_frame.cc |
diff --git a/media/base/video_frame.cc b/media/base/video_frame.cc |
index c837159958739edb5d4d3708d1dab8af0bc45562..ceb3858f2fbe7a1e41a7a6c1833d432176a13027 100644 |
--- a/media/base/video_frame.cc |
+++ b/media/base/video_frame.cc |
@@ -478,6 +478,7 @@ scoped_refptr<VideoFrame> VideoFrame::CreateEOSFrame() { |
true); |
} |
+#if !defined(MEDIA_FOR_CAST_IOS) |
// static |
scoped_refptr<VideoFrame> VideoFrame::CreateColorFrame( |
miu
2015/03/27 21:26:26
I don't understand: Why can't these be compiled in
jfroy
2015/03/27 21:33:25
FillYUV is defined in yuv_convert.cc, which will s
|
const gfx::Size& size, |
@@ -509,6 +510,7 @@ scoped_refptr<VideoFrame> VideoFrame::CreateTransparentFrame( |
FillYUVA(frame.get(), kBlackY, kBlackUV, kBlackUV, kTransparentA); |
return frame; |
} |
+#endif // defined(MEDIA_FOR_CAST_IOS) |
#if defined(VIDEO_HOLE) |
// This block and other blocks wrapped around #if defined(VIDEO_HOLE) is not |