HomeSort by relevance Sort by last modified time
    Searched defs:VideoFramePool (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/media/base/
video_frame_pool.h 18 // VideoFramePool object. If the parameters passed to CreateFrame() change
21 class MEDIA_EXPORT VideoFramePool {
23 VideoFramePool();
24 ~VideoFramePool();
45 DISALLOW_COPY_AND_ASSIGN(VideoFramePool);
video_frame_pool.cc 15 class VideoFramePool::PoolImpl
16 : public base::RefCountedThreadSafe<VideoFramePool::PoolImpl> {
37 friend class base::RefCountedThreadSafe<VideoFramePool::PoolImpl>;
52 VideoFramePool::PoolImpl::PoolImpl() : is_shutdown_(false) {}
54 VideoFramePool::PoolImpl::~PoolImpl() {
58 scoped_refptr<VideoFrame> VideoFramePool::PoolImpl::CreateFrame(
90 base::Bind(&VideoFramePool::PoolImpl::FrameReleased, this, frame));
93 void VideoFramePool::PoolImpl::Shutdown() {
99 void VideoFramePool::PoolImpl::FrameReleased(
108 VideoFramePool::VideoFramePool() : pool_(new PoolImpl())
    [all...]

Completed in 76 milliseconds