HomeSort by relevance Sort by last modified time
    Searched refs:H264Picture (Results 1 - 5 of 5) sorted by null

  /external/v4l2_codec2/vda/
h264_dpb.h 27 class H264Picture : public base::RefCountedThreadSafe<H264Picture> {
29 using Vector = std::vector<scoped_refptr<H264Picture>>;
37 H264Picture();
92 friend class base::RefCountedThreadSafe<H264Picture>;
93 virtual ~H264Picture();
96 DISALLOW_COPY_AND_ASSIGN(H264Picture);
121 void StorePic(const scoped_refptr<H264Picture>& pic);
130 scoped_refptr<H264Picture> GetShortRefPicByPicNum(int pic_num);
133 scoped_refptr<H264Picture> GetLongRefPicByLongTermPicNum(int pic_num)
    [all...]
h264_decoder.h 38 // Create a new H264Picture that the decoder client can use for decoding
45 virtual scoped_refptr<H264Picture> CreateH264Picture() = 0;
59 const H264Picture::Vector& ref_pic_listp0,
60 const H264Picture::Vector& ref_pic_listb0,
61 const H264Picture::Vector& ref_pic_listb1,
62 const scoped_refptr<H264Picture>& pic) = 0;
75 const H264Picture::Vector& ref_pic_list0,
76 const H264Picture::Vector& ref_pic_list1,
77 const scoped_refptr<H264Picture>& pic,
85 virtual bool SubmitDecode(const scoped_refptr<H264Picture>& pic) = 0
    [all...]
h264_dpb.cc 16 H264Picture::H264Picture()
48 H264Picture::~H264Picture() = default;
50 V4L2H264Picture* H264Picture::AsV4L2H264Picture() {
77 for (H264Picture::Vector::iterator it = pics_.begin(); it != pics_.end();
89 for (H264Picture::Vector::iterator it = pics_.begin(); it != pics_.end();) {
98 void H264DPB::StorePic(const scoped_refptr<H264Picture>& pic) {
120 scoped_refptr<H264Picture> H264DPB::GetShortRefPicByPicNum(int pic_num) {
130 scoped_refptr<H264Picture> H264DPB::GetLongRefPicByLongTermPicNum(int pic_num)
    [all...]
h264_decoder.cc 53 prev_ref_field_ = H264Picture::FIELD_NONE;
74 H264Picture::Vector* ref_pic_list0,
75 H264Picture::Vector* ref_pic_list1) {
100 bool H264Decoder::InitNonexistingPicture(scoped_refptr<H264Picture> pic,
108 pic->field = H264Picture::FIELD_NONE;
121 curr_pic_->field = slice_hdr->bottom_field_flag ? H264Picture::FIELD_BOTTOM
122 : H264Picture::FIELD_TOP;
124 curr_pic_->field = H264Picture::FIELD_NONE;
127 if (curr_pic_->field != H264Picture::FIELD_NONE) {
186 bool H264Decoder::CalculatePicOrderCounts(scoped_refptr<H264Picture> pic)
    [all...]
v4l2_slice_video_decode_accelerator.cc 237 scoped_refptr<H264Picture> CreateH264Picture() override;
242 const H264Picture::Vector& ref_pic_listp0,
243 const H264Picture::Vector& ref_pic_listb0,
244 const H264Picture::Vector& ref_pic_listb1,
245 const scoped_refptr<H264Picture>& pic) override;
249 const H264Picture::Vector& ref_pic_list0,
250 const H264Picture::Vector& ref_pic_list1,
251 const scoped_refptr<H264Picture>& pic,
255 bool SubmitDecode(const scoped_refptr<H264Picture>& pic) override;
256 bool OutputPicture(const scoped_refptr<H264Picture>& pic) override
    [all...]

Completed in 69 milliseconds