Home
last modified time | relevance | path

Searched refs:VP9Picture (Results 1 – 4 of 4) sorted by relevance

/external/v4l2_codec2/vda/
Dvp9_decoder.h49 virtual scoped_refptr<VP9Picture> CreateVP9Picture() = 0;
64 const scoped_refptr<VP9Picture>& pic,
67 const std::vector<scoped_refptr<VP9Picture>>& ref_pictures,
80 virtual bool OutputPicture(const scoped_refptr<VP9Picture>& pic) = 0;
89 virtual bool GetFrameContext(const scoped_refptr<VP9Picture>& pic,
109 void RefreshReferenceFrames(const scoped_refptr<VP9Picture>& pic);
113 bool DecodeAndOutputPicture(scoped_refptr<VP9Picture> pic);
118 const scoped_refptr<VP9Picture>& pic,
139 std::vector<scoped_refptr<VP9Picture>> ref_frames_;
Dvp9_picture.h20 class VP9Picture : public base::RefCountedThreadSafe<VP9Picture> {
22 VP9Picture();
34 friend class base::RefCountedThreadSafe<VP9Picture>;
35 virtual ~VP9Picture();
37 DISALLOW_COPY_AND_ASSIGN(VP9Picture);
Dvp9_picture.cc10 VP9Picture::VP9Picture() {} in VP9Picture() function in media::VP9Picture
12 VP9Picture::~VP9Picture() {} in ~VP9Picture()
14 V4L2VP9Picture* VP9Picture::AsV4L2VP9Picture() { in AsV4L2VP9Picture()
Dvp9_decoder.cc137 scoped_refptr<VP9Picture> pic = accelerator_->CreateVP9Picture(); in Decode()
162 void VP9Decoder::RefreshReferenceFrames(const scoped_refptr<VP9Picture>& pic) { in RefreshReferenceFrames()
171 const scoped_refptr<VP9Picture>& pic, in UpdateFrameContext()
185 bool VP9Decoder::DecodeAndOutputPicture(scoped_refptr<VP9Picture> pic) { in DecodeAndOutputPicture()