// Copyright 2019 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/gpu/vp9_reference_frame_vector.h" #include <bitset> #include "media/gpu/vp9_picture.h" namespace media { Vp9ReferenceFrameVector::Vp9ReferenceFrameVector() { … } Vp9ReferenceFrameVector::~Vp9ReferenceFrameVector() = default; // Refreshes |reference_frames_| slots with the current |pic|s frame header. void Vp9ReferenceFrameVector::Refresh(scoped_refptr<VP9Picture> pic) { … } void Vp9ReferenceFrameVector::Clear() { … } scoped_refptr<VP9Picture> Vp9ReferenceFrameVector::GetFrame( size_t index) const { … } } // namespace media