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

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

Issue 374153003: Use PPS/SPS NALUs to initialize a VTDecompressionSession. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comment typo. Created 6 years, 5 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
« no previous file with comments | « no previous file | content/common/gpu/media/vt_video_decode_accelerator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
index 5b5d8be070c194b13095ba5a39a135103cc6a70d..08dd8ab8454ca08a1b6fbaa48133643087aa874e 100644
--- a/content/common/gpu/media/vt_video_decode_accelerator.h
+++ b/content/common/gpu/media/vt_video_decode_accelerator.h
@@ -5,19 +5,26 @@
#ifndef CONTENT_COMMON_GPU_MEDIA_VT_VIDEO_DECODE_ACCELERATOR_H_
#define CONTENT_COMMON_GPU_MEDIA_VT_VIDEO_DECODE_ACCELERATOR_H_
-#include <stdint.h>
-
+#include "base/basictypes.h"
+#include "base/mac/scoped_cftyperef.h"
#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 "base/threading/thread.h"
+#include "content/common/gpu/media/vt.h"
+#include "media/filters/h264_parser.h"
#include "media/video/video_decode_accelerator.h"
+#include "ui/gfx/geometry/size.h"
#include "ui/gl/gl_context_cgl.h"
+namespace base {
+class SingleThreadTaskRunner;
+} // namespace base
+
namespace content {
-// (Stub of a) VideoToolbox.framework implementation of the
-// VideoDecodeAccelerator interface for Mac OS X.
+// VideoToolbox.framework implementation of the VideoDecodeAccelerator
+// interface for Mac OS X (currently limited to 10.9+).
class VTVideoDecodeAccelerator
: public media::VideoDecodeAccelerator,
public base::NonThreadSafe {
@@ -38,10 +45,32 @@ class VTVideoDecodeAccelerator
virtual void Destroy() OVERRIDE;
virtual bool CanDecodeOnIOThread() OVERRIDE;
+ // Called by VideoToolbox when a frame is decoded.
+ void Output(
+ int32_t bitstream_id,
+ OSStatus status,
+ VTDecodeInfoFlags info_flags,
+ CVImageBufferRef image_buffer);
+
private:
- scoped_refptr<base::MessageLoopProxy> loop_proxy_;
+ // Configure a VideoToolbox decompression session from parameter set NALUs.
+ void ConfigureDecoder(
+ const std::vector<const uint8_t*>& nalu_data_ptrs,
+ const std::vector<size_t>& nalu_data_sizes);
+
+ // Decode a frame of bitstream.
+ void DecodeTask(const media::BitstreamBuffer);
+
CGLContextObj cgl_context_;
media::VideoDecodeAccelerator::Client* client_;
+ base::Thread decoder_thread_;
+
+ // Decoder configuration (used only on decoder thread).
+ VTDecompressionOutputCallbackRecord callback_;
+ base::ScopedCFTypeRef<CMFormatDescriptionRef> format_;
+ base::ScopedCFTypeRef<VTDecompressionSessionRef> session_;
+ media::H264Parser parser_;
+ gfx::Size coded_size_;
// Member variables should appear before the WeakPtrFactory, to ensure
// that any WeakPtrs to Controller are invalidated before its members
« no previous file with comments | « no previous file | content/common/gpu/media/vt_video_decode_accelerator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698