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

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

Issue 322433004: Create VTVideoDecodeAccelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation issues. Created 6 years, 6 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/vt_video_decode_accelerator.h
diff --git a/content/common/gpu/media/vt_video_decode_accelerator.h b/content/common/gpu/media/vt_video_decode_accelerator.h
new file mode 100644
index 0000000000000000000000000000000000000000..ce99b325fdd44e53fd07ffcc079a1e8b19a85c75
--- /dev/null
+++ b/content/common/gpu/media/vt_video_decode_accelerator.h
@@ -0,0 +1,51 @@
+// Copyright (c) 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_VT_VIDEO_DECODE_ACCELERATOR_H_
+#define CONTENT_COMMON_GPU_MEDIA_VT_VIDEO_DECODE_ACCELERATOR_H_
+
+#include <stdint.h>
scherkus (not reviewing) 2014/06/09 16:02:07 what's this used for?
sandersd (OOO until July 31) 2014/06/10 01:02:44 int32_t, but the include is implied by the fact th
+
+#include "base/memory/ref_counted.h"
+#include "base/memory/weak_ptr.h"
+#include "base/message_loop/message_loop.h"
+#include "base/message_loop/message_loop_proxy.h"
+#include "content/common/content_export.h"
+#include "content/common/gpu/media/video_decode_accelerator_impl.h"
+#include "ui/gl/gl_context_cgl.h"
+
+namespace content {
+
+class CONTENT_EXPORT VTVideoDecodeAccelerator
scherkus (not reviewing) 2014/06/09 16:02:07 do you need CONTENT_EXPORT yet? usually it's neede
scherkus (not reviewing) 2014/06/09 16:02:07 docs for the class
sandersd (OOO until July 31) 2014/06/10 01:02:45 Done.
sandersd (OOO until July 31) 2014/06/10 01:02:45 Done.
+ : public VideoDecodeAcceleratorImpl,
+ public base::NonThreadSafe {
+ public:
+ explicit VTVideoDecodeAccelerator(CGLContextObj cgl_context);
+ virtual ~VTVideoDecodeAccelerator();
+
+ // VideoDecodeAcceleratorImpl implementation.
+ virtual bool Initialize(
+ media::VideoCodecProfile profile,
+ Client* client) OVERRIDE;
+ virtual void Decode(const media::BitstreamBuffer& bitstream) OVERRIDE;
+ virtual void AssignPictureBuffers(
+ const std::vector<media::PictureBuffer>& pictures) OVERRIDE;
+ virtual void ReusePictureBuffer(int32_t picture_id) OVERRIDE;
+ virtual void Flush() OVERRIDE;
+ virtual void Reset() OVERRIDE;
+ virtual void Destroy() OVERRIDE;
+
+ private:
+ base::WeakPtrFactory<VTVideoDecodeAccelerator> weak_this_factory_;
scherkus (not reviewing) 2014/06/09 16:02:07 this should be the last member - feel free to copy
sandersd (OOO until July 31) 2014/06/10 01:02:44 Done.
+ base::WeakPtr<VTVideoDecodeAccelerator> weak_this_;
+ scoped_refptr<base::MessageLoopProxy> loop_proxy_;
+ CGLContextObj cgl_context_;
+ media::VideoDecodeAccelerator::Client* client_;
+
+ DISALLOW_COPY_AND_ASSIGN(VTVideoDecodeAccelerator);
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_GPU_MEDIA_VT_VIDEO_DECODE_ACCELERATOR_H_

Powered by Google App Engine
This is Rietveld 408576698