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

Unified Diff: content/common/gpu/media/exynos_v4l2_video_device.h

Issue 137023008: Add support for Tegra V4L2 VDA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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
Index: content/common/gpu/media/exynos_v4l2_video_device.h
diff --git a/content/common/gpu/media/exynos_v4l2_video_device.h b/content/common/gpu/media/exynos_v4l2_video_device.h
index 39c3428523ec1fca2ec8a05d8430416e70dd2fbf..adcdc70af899068fbed466f59fe23fcecf160ddf 100644
--- a/content/common/gpu/media/exynos_v4l2_video_device.h
+++ b/content/common/gpu/media/exynos_v4l2_video_device.h
@@ -28,9 +28,12 @@ class ExynosV4L2Device : public V4L2Device {
int flags,
unsigned int offset) OVERRIDE;
void Munmap(void* addr, unsigned int len) OVERRIDE;
-
- // Does all the initialization of device fds, returns true on success.
- bool Initialize();
+ bool Initialize() OVERRIDE;
+ EGLImageKHR CreateEGLImage(EGLDisplay egl_display,
+ EGLint attrib[],
+ unsigned int texture_id,
+ unsigned int buffer_index) OVERRIDE;
+ unsigned int GetTextureTarget() OVERRIDE;
sheu 2014/03/06 08:51:34 While we're at this -- shouldn't these all be expl
shivdasp 2014/03/06 11:10:09 Done.
private:
// The actual device fd.
@@ -42,6 +45,7 @@ class ExynosV4L2Device : public V4L2Device {
DISALLOW_COPY_AND_ASSIGN(ExynosV4L2Device);
};
+
} // namespace content
#endif // CONTENT_COMMON_GPU_MEDIA_EXYNOS_V4L2_VIDEO_DEVICE_H_

Powered by Google App Engine
This is Rietveld 408576698