OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MEDIA_BASE_VIDEO_FRAME_H_ | 5 #ifndef MEDIA_BASE_VIDEO_FRAME_H_ |
6 #define MEDIA_BASE_VIDEO_FRAME_H_ | 6 #define MEDIA_BASE_VIDEO_FRAME_H_ |
7 | 7 |
8 #include <vector> | |
9 | |
10 #include "base/callback.h" | 8 #include "base/callback.h" |
11 #include "base/md5.h" | 9 #include "base/md5.h" |
12 #include "base/memory/shared_memory.h" | 10 #include "base/memory/shared_memory.h" |
13 #include "base/synchronization/lock.h" | 11 #include "base/synchronization/lock.h" |
14 #include "media/base/buffers.h" | 12 #include "media/base/buffers.h" |
15 #include "ui/gfx/rect.h" | 13 #include "ui/gfx/rect.h" |
16 #include "ui/gfx/size.h" | 14 #include "ui/gfx/size.h" |
17 | 15 |
18 class SkBitmap; | 16 class SkBitmap; |
19 | 17 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
79 static bool IsValidConfig(Format format, const gfx::Size& coded_size, | 77 static bool IsValidConfig(Format format, const gfx::Size& coded_size, |
80 const gfx::Rect& visible_rect, | 78 const gfx::Rect& visible_rect, |
81 const gfx::Size& natural_size); | 79 const gfx::Size& natural_size); |
82 | 80 |
83 // CB to write pixels from the texture backing this frame into the | 81 // CB to write pixels from the texture backing this frame into the |
84 // |const SkBitmap&| parameter. | 82 // |const SkBitmap&| parameter. |
85 typedef base::Callback<void(const SkBitmap&)> ReadPixelsCB; | 83 typedef base::Callback<void(const SkBitmap&)> ReadPixelsCB; |
86 | 84 |
87 // CB to be called on the mailbox backing this frame when the frame is | 85 // CB to be called on the mailbox backing this frame when the frame is |
88 // destroyed. | 86 // destroyed. |
89 typedef base::Callback<void(const std::vector<uint32>&)> ReleaseMailboxCB; | 87 typedef base::Callback<void(uint32)> ReleaseMailboxCB; |
90 | 88 |
91 // Wraps a native texture of the given parameters with a VideoFrame. The | 89 // Wraps a native texture of the given parameters with a VideoFrame. The |
92 // backing of the VideoFrame is held in the mailbox held by |mailbox_holder|, | 90 // backing of the VideoFrame is held in the mailbox held by |mailbox_holder|, |
93 // and |mailbox_holder_release_cb| will be called with |mailbox_holder| as the | 91 // and |mailbox_holder_release_cb| will be called with |mailbox_holder| as the |
94 // argument when the VideoFrame is to be destroyed. | 92 // argument when the VideoFrame is to be destroyed. |
95 // |read_pixels_cb| may be used to do (slow!) readbacks from the | 93 // |read_pixels_cb| may be used to do (slow!) readbacks from the |
96 // texture to main memory. | 94 // texture to main memory. |
97 static scoped_refptr<VideoFrame> WrapNativeTexture( | 95 static scoped_refptr<VideoFrame> WrapNativeTexture( |
98 scoped_ptr<gpu::MailboxHolder> mailbox_holder, | 96 scoped_ptr<gpu::MailboxHolder> mailbox_holder, |
99 const ReleaseMailboxCB& mailbox_holder_release_cb, | 97 const ReleaseMailboxCB& mailbox_holder_release_cb, |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
247 // Returns true if this VideoFrame represents the end of the stream. | 245 // Returns true if this VideoFrame represents the end of the stream. |
248 bool end_of_stream() const { return end_of_stream_; } | 246 bool end_of_stream() const { return end_of_stream_; } |
249 | 247 |
250 base::TimeDelta timestamp() const { | 248 base::TimeDelta timestamp() const { |
251 return timestamp_; | 249 return timestamp_; |
252 } | 250 } |
253 void set_timestamp(const base::TimeDelta& timestamp) { | 251 void set_timestamp(const base::TimeDelta& timestamp) { |
254 timestamp_ = timestamp; | 252 timestamp_ = timestamp; |
255 } | 253 } |
256 | 254 |
257 // Append |sync_point| into |release_sync_points_| which will be passed to | 255 class SyncPointProvider { |
dshwang
2014/06/19 10:28:17
I'm not good at naming. If you have better name, p
danakj
2014/06/19 15:56:26
Mmmh SyncPointClient if you like that better? This
dshwang
2014/06/23 18:33:20
I choose SyncPointClient :)
| |
256 public: | |
257 SyncPointProvider() {} | |
258 virtual uint32 InsertSyncPoint() = 0; | |
259 virtual void WaitSyncPoint(uint32 sync_point) = 0; | |
260 | |
261 protected: | |
262 virtual ~SyncPointProvider() {} | |
263 | |
264 DISALLOW_COPY_AND_ASSIGN(SyncPointProvider); | |
265 }; | |
266 // Set a new sync point to |release_sync_point_| which will be passed to | |
258 // the video decoder when |mailbox_holder_release_cb_| is called so that | 267 // the video decoder when |mailbox_holder_release_cb_| is called so that |
259 // the video decoder waits for the sync points before reusing the mailbox. | 268 // the video decoder waits for the sync point before reusing the mailbox. |
260 // Multiple clients can append multiple sync points on one frame. | 269 // A client should provide a SyncPointProvider implementation to insert or |
270 // wait a sync point. | |
261 // This method is thread safe. Both blink and compositor threads can call it. | 271 // This method is thread safe. Both blink and compositor threads can call it. |
262 void AppendReleaseSyncPoint(uint32 sync_point); | 272 void UpdateReleaseSyncPoint(SyncPointProvider&); |
danakj
2014/06/19 15:56:26
this is a non-const ref which is not allowed. make
dshwang
2014/06/23 18:33:20
Done.
| |
263 | 273 |
264 // Used to keep a running hash of seen frames. Expects an initialized MD5 | 274 // Used to keep a running hash of seen frames. Expects an initialized MD5 |
265 // context. Calls MD5Update with the context and the contents of the frame. | 275 // context. Calls MD5Update with the context and the contents of the frame. |
266 void HashFrameForTesting(base::MD5Context* context); | 276 void HashFrameForTesting(base::MD5Context* context); |
267 | 277 |
268 private: | 278 private: |
269 friend class base::RefCountedThreadSafe<VideoFrame>; | 279 friend class base::RefCountedThreadSafe<VideoFrame>; |
270 // Clients must use the static CreateFrame() method to create a new frame. | 280 // Clients must use the static CreateFrame() method to create a new frame. |
271 VideoFrame(Format format, | 281 VideoFrame(Format format, |
272 const gfx::Size& coded_size, | 282 const gfx::Size& coded_size, |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
321 // Dmabufs for each plane, if this frame is wrapping memory | 331 // Dmabufs for each plane, if this frame is wrapping memory |
322 // acquired via dmabuf. | 332 // acquired via dmabuf. |
323 base::ScopedFD dmabuf_fds_[kMaxPlanes]; | 333 base::ScopedFD dmabuf_fds_[kMaxPlanes]; |
324 #endif | 334 #endif |
325 | 335 |
326 base::Closure no_longer_needed_cb_; | 336 base::Closure no_longer_needed_cb_; |
327 | 337 |
328 base::TimeDelta timestamp_; | 338 base::TimeDelta timestamp_; |
329 | 339 |
330 base::Lock release_sync_point_lock_; | 340 base::Lock release_sync_point_lock_; |
331 std::vector<uint32> release_sync_points_; | 341 uint32 release_sync_point_; |
332 | 342 |
333 const bool end_of_stream_; | 343 const bool end_of_stream_; |
334 | 344 |
335 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoFrame); | 345 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoFrame); |
336 }; | 346 }; |
337 | 347 |
338 } // namespace media | 348 } // namespace media |
339 | 349 |
340 #endif // MEDIA_BASE_VIDEO_FRAME_H_ | 350 #endif // MEDIA_BASE_VIDEO_FRAME_H_ |
OLD | NEW |