Home
last modified time | relevance | path

Searched refs:VP8Picture (Results 1 – 5 of 5) sorted by relevance

/external/v4l2_codec2/vda/
Dvp8_decoder.h42 virtual scoped_refptr<VP8Picture> CreateVP8Picture() = 0;
49 virtual bool SubmitDecode(const scoped_refptr<VP8Picture>& pic,
51 const scoped_refptr<VP8Picture>& last_frame,
52 const scoped_refptr<VP8Picture>& golden_frame,
53 const scoped_refptr<VP8Picture>& alt_frame) = 0;
61 virtual bool OutputPicture(const scoped_refptr<VP8Picture>& pic) = 0;
94 scoped_refptr<VP8Picture> curr_pic_;
95 scoped_refptr<VP8Picture> last_frame_;
96 scoped_refptr<VP8Picture> golden_frame_;
97 scoped_refptr<VP8Picture> alt_frame_;
Dvp8_picture.h15 class VP8Picture : public base::RefCounted<VP8Picture> {
17 VP8Picture();
22 friend class base::RefCounted<VP8Picture>;
23 virtual ~VP8Picture();
25 DISALLOW_COPY_AND_ASSIGN(VP8Picture);
Dvp8_picture.cc9 VP8Picture::VP8Picture() {} in VP8Picture() function in media::VP8Picture
11 VP8Picture::~VP8Picture() {} in ~VP8Picture()
13 V4L2VP8Picture* VP8Picture::AsV4L2VP8Picture() { in AsV4L2VP8Picture()
Dv4l2_slice_video_decode_accelerator.cc285 scoped_refptr<VP8Picture> CreateVP8Picture() override;
287 bool SubmitDecode(const scoped_refptr<VP8Picture>& pic,
289 const scoped_refptr<VP8Picture>& last_frame,
290 const scoped_refptr<VP8Picture>& golden_frame,
291 const scoped_refptr<VP8Picture>& alt_frame) override;
293 bool OutputPicture(const scoped_refptr<VP8Picture>& pic) override;
297 const scoped_refptr<VP8Picture>& pic);
369 class V4L2VP8Picture : public VP8Picture {
2336 scoped_refptr<VP8Picture>
2420 const scoped_refptr<VP8Picture>& pic, in SubmitDecode()
[all …]
Dvp8_decoder.cc112 scoped_refptr<VP8Picture> curr_golden = golden_frame_; in RefreshReferenceFrames()