Index: content/common/gpu/media/vp8_picture.h |
diff --git a/content/common/gpu/media/vp8_picture.h b/content/common/gpu/media/vp8_picture.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..09dbd6110050b470ebf3b2e494c3b9c0b9040a1d |
--- /dev/null |
+++ b/content/common/gpu/media/vp8_picture.h |
@@ -0,0 +1,26 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CONTENT_COMMON_GPU_MEDIA_VP8_PICTURE_H_ |
+#define CONTENT_COMMON_GPU_MEDIA_VP8_PICTURE_H_ |
+ |
+//#include "media/filters/vp8_parser.h" |
kcwu
2015/01/12 07:31:46
?
Pawel Osciak
2015/01/13 11:33:34
Removed in the next PS.
|
+ |
+namespace content { |
+ |
+class V4L2VP8Picture; |
+ |
+class VP8Picture : public base::RefCounted<VP8Picture> { |
+ public: |
+ VP8Picture() {} |
+ virtual ~VP8Picture() {} |
+ |
+ virtual V4L2VP8Picture* AsV4L2VP8Picture() { return nullptr; } |
+ |
+ DISALLOW_COPY_AND_ASSIGN(VP8Picture); |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_COMMON_GPU_MEDIA_VP8_PICTURE_H_ |