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

Unified Diff: components/arc/video/arc_video_service.h

Issue 1451353002: Implement GpuArcVideoService for arc video accelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and addressed luis's comments Created 5 years 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: components/arc/video/arc_video_service.h
diff --git a/components/arc/video/arc_video_service.h b/components/arc/video/arc_video_service.h
new file mode 100644
index 0000000000000000000000000000000000000000..0c3c7bcd24aa410532bb672292067b93df4085ab
--- /dev/null
+++ b/components/arc/video/arc_video_service.h
@@ -0,0 +1,22 @@
+// Copyright 2015 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 COMPONENTS_ARC_ARC_VIDEO_SERVICE_H
+#define COMPONENTS_ARC_ARC_VIDEO_SERVICE_H
+
+namespace arc {
+
+// ArcVideoService is an abstract class providing video decoding/encoding
+// acceleration service.
Pawel Osciak 2015/12/23 06:24:01 We should probably mention that the purpose of thi
kcwu 2015/12/23 09:09:43 Done.
+class ArcVideoService {
+ public:
+ virtual ~ArcVideoService();
+
+ // Initializes and registers itself to ArcBridgeService.
+ virtual void Initialize() = 0;
+};
+
+} // namespace arc
+
+#endif // COMPONENTS_ARC_ARC_VIDEO_SERVICE_H

Powered by Google App Engine
This is Rietveld 408576698