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

Side by Side Diff: media/base/video_frame.h

Issue 312803002: Android media: VideoFrame should not store so many sync points. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: android unittests build fix 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 unified diff | Download patch
OLDNEW
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
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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 // Returns true if this VideoFrame represents the end of the stream. 247 // Returns true if this VideoFrame represents the end of the stream.
250 bool end_of_stream() const { return end_of_stream_; } 248 bool end_of_stream() const { return end_of_stream_; }
251 249
252 base::TimeDelta timestamp() const { 250 base::TimeDelta timestamp() const {
253 return timestamp_; 251 return timestamp_;
254 } 252 }
255 void set_timestamp(const base::TimeDelta& timestamp) { 253 void set_timestamp(const base::TimeDelta& timestamp) {
256 timestamp_ = timestamp; 254 timestamp_ = timestamp;
257 } 255 }
258 256
259 // Append |sync_point| into |release_sync_points_| which will be passed to 257 class SyncPointClient {
258 public:
259 SyncPointClient() {}
260 virtual uint32 InsertSyncPoint() = 0;
261 virtual void WaitSyncPoint(uint32 sync_point) = 0;
262
263 protected:
264 virtual ~SyncPointClient() {}
265
266 DISALLOW_COPY_AND_ASSIGN(SyncPointClient);
267 };
268 // Set a new sync point to |release_sync_point_| which will be passed to
no sievers 2014/07/10 18:52:29 nit: don't use internals like the private member |
260 // the video decoder when |mailbox_holder_release_cb_| is called so that 269 // the video decoder when |mailbox_holder_release_cb_| is called so that
261 // the video decoder waits for the sync points before reusing the mailbox. 270 // the video decoder waits for the sync point before reusing the mailbox.
262 // Multiple clients can append multiple sync points on one frame. 271 // A client should provide a SyncPointClient implementation to insert or
272 // wait a sync point.
263 // This method is thread safe. Both blink and compositor threads can call it. 273 // This method is thread safe. Both blink and compositor threads can call it.
264 void AppendReleaseSyncPoint(uint32 sync_point); 274 void UpdateReleaseSyncPoint(SyncPointClient* client);
265 275
266 // Used to keep a running hash of seen frames. Expects an initialized MD5 276 // Used to keep a running hash of seen frames. Expects an initialized MD5
267 // context. Calls MD5Update with the context and the contents of the frame. 277 // context. Calls MD5Update with the context and the contents of the frame.
268 void HashFrameForTesting(base::MD5Context* context); 278 void HashFrameForTesting(base::MD5Context* context);
269 279
270 private: 280 private:
271 friend class base::RefCountedThreadSafe<VideoFrame>; 281 friend class base::RefCountedThreadSafe<VideoFrame>;
272 // Clients must use the static CreateFrame() method to create a new frame. 282 // Clients must use the static CreateFrame() method to create a new frame.
273 VideoFrame(Format format, 283 VideoFrame(Format format,
274 const gfx::Size& coded_size, 284 const gfx::Size& coded_size,
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 // Dmabufs for each plane, if this frame is wrapping memory 333 // Dmabufs for each plane, if this frame is wrapping memory
324 // acquired via dmabuf. 334 // acquired via dmabuf.
325 base::ScopedFD dmabuf_fds_[kMaxPlanes]; 335 base::ScopedFD dmabuf_fds_[kMaxPlanes];
326 #endif 336 #endif
327 337
328 base::Closure no_longer_needed_cb_; 338 base::Closure no_longer_needed_cb_;
329 339
330 base::TimeDelta timestamp_; 340 base::TimeDelta timestamp_;
331 341
332 base::Lock release_sync_point_lock_; 342 base::Lock release_sync_point_lock_;
333 std::vector<uint32> release_sync_points_; 343 uint32 release_sync_point_;
334 344
335 const bool end_of_stream_; 345 const bool end_of_stream_;
336 346
337 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoFrame); 347 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoFrame);
338 }; 348 };
339 349
340 } // namespace media 350 } // namespace media
341 351
342 #endif // MEDIA_BASE_VIDEO_FRAME_H_ 352 #endif // MEDIA_BASE_VIDEO_FRAME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698