Home | History | Annotate | Download | only in vda

Lines Matching refs:H264Picture

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) {
200 if (prev_ref_field_ != H264Picture::FIELD_BOTTOM) {
228 if (pic->field != H264Picture::FIELD_BOTTOM) {
233 if (pic->field != H264Picture::FIELD_TOP) {
234 if (pic->field == H264Picture::FIELD_NONE) {
289 if (pic->field == H264Picture::FIELD_NONE) {
295 } else if (pic->field != H264Picture::FIELD_BOTTOM) {
327 if (pic->field == H264Picture::FIELD_NONE) {
330 } else if (pic->field == H264Picture::FIELD_BOTTOM) {
344 case H264Picture::FIELD_NONE:
348 case H264Picture::FIELD_TOP:
351 case H264Picture::FIELD_BOTTOM:
365 DCHECK_EQ(pic->field, H264Picture::FIELD_NONE);
380 bool operator()(const scoped_refptr<H264Picture>& a,
381 const scoped_refptr<H264Picture>& b) const {
387 bool operator()(const scoped_refptr<H264Picture>& a,
388 const scoped_refptr<H264Picture>& b) const {
415 bool operator()(const scoped_refptr<H264Picture>& a,
416 const scoped_refptr<H264Picture>& b) const {
422 bool operator()(const scoped_refptr<H264Picture>& a,
423 const scoped_refptr<H264Picture>& b) const {
443 H264Picture::Vector::iterator iter;
486 H264Picture>& pic) {
497 int H264Decoder::LongTermPicNumF(const scoped_refptr<H264Picture>& pic) {
506 static void ShiftRightAndInsert(H264Picture::Vector* v,
509 const scoped_refptr<H264Picture>& pic) {
529 H264Picture::Vector* ref_pic_listx) {
566 scoped_refptr<H264Picture> pic;
664 void H264Decoder::OutputPic(scoped_refptr<H264Picture> pic) {
691 H264Picture::Vector to_output;
754 bool H264Decoder::HandleMemoryManagementOps(scoped_refptr<H264Picture> pic) {
759 scoped_refptr<H264Picture> to_mark;
813 H264Picture::Vector long_terms;
816 scoped_refptr<H264Picture>& long_term_pic = long_terms[i];
836 H264Picture::Vector long_terms;
839 scoped_refptr<H264Picture>& long_term_pic = long_terms[i];
868 bool H264Decoder::ReferencePictureMarking(scoped_refptr<H264Picture> pic) {
908 scoped_refptr<H264Picture> to_unmark =
921 bool H264Decoder::FinishPicture(scoped_refptr<H264Picture> pic) {
950 H264Picture::Vector not_outputted;
963 H264Picture::Vector::iterator output_candidate = not_outputted.begin();
1163 scoped_refptr<H264Picture> pic = curr_pic_;
1187 scoped_refptr<H264Picture> pic = new H264Picture();
1289 H264Picture::Vector ref_pic_list0, ref_pic_list1;