summaryrefslogtreecommitdiff
path: root/chromium/media/video/mock_gpu_memory_buffer_video_frame_pool.cc
blob: 7783129e38183290061ccd6ea795337b46d70df4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/video/mock_gpu_memory_buffer_video_frame_pool.h"

#include "base/bind.h"

namespace media {

MockGpuMemoryBufferVideoFramePool::MockGpuMemoryBufferVideoFramePool(
    std::vector<base::OnceClosure>* frame_ready_cbs)
    : frame_ready_cbs_(frame_ready_cbs) {}

MockGpuMemoryBufferVideoFramePool::~MockGpuMemoryBufferVideoFramePool() {}

void MockGpuMemoryBufferVideoFramePool::MaybeCreateHardwareFrame(
    scoped_refptr<VideoFrame> video_frame,
    FrameReadyCB frame_ready_cb) {
  frame_ready_cbs_->push_back(
      base::BindOnce(std::move(frame_ready_cb), std::move(video_frame)));
}

}  // namespace media