Home | History | Annotate | Download | only in src

Lines Matching refs:ReferenceFrames

951 		pic_params->ReferenceFrames[i].picture_id = VA_INVALID_SURFACE;
952 pic_params->ReferenceFrames[i].frame_idx = -1;
953 pic_params->ReferenceFrames[i].TopFieldOrderCnt = -1;
954 pic_params->ReferenceFrames[i].BottomFieldOrderCnt = -1;
955 pic_params->ReferenceFrames[i].flags = VA_PICTURE_H264_INVALID; //assuming we don't need to OR with existing flags
976 if (pic_params->ReferenceFrames[k].TopFieldOrderCnt == pRefList[j].TopFieldOrderCnt)
979 tflags = pic_params->ReferenceFrames[k].flags | pRefList[j].flags;
983 pic_params->ReferenceFrames[k].flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE;
992 pic_params->ReferenceFrames[pic_params->num_ref_frames].picture_id =
995 LOG_V( "Inserting frame id %d into DPB\n", pic_params->ReferenceFrames[pic_params->num_ref_frames].picture_id);
997 pic_params->ReferenceFrames[pic_params->num_ref_frames].flags =
999 pic_params->ReferenceFrames[pic_params->num_ref_frames].frame_idx =
1001 pic_params->ReferenceFrames[pic_params->num_ref_frames].TopFieldOrderCnt =
1003 pic_params->ReferenceFrames[pic_params->num_ref_frames++].BottomFieldOrderCnt =
1508 if (!(pic_params->ReferenceFrames[i].flags & VA_PICTURE_H264_INVALID))
1511 poc = mix_videofmt_h264_get_poc(&(pic_params->ReferenceFrames[i]));
1517 pic_params->ReferenceFrames[i].picture_id = mvf->frame_id;
1522 LOG_V( "For poc %d, set surface id for DPB index %d to %d\n", poc, i, (gint)pic_params->ReferenceFrames[i].picture_id);
1581 vaPic = &(((VAPictureParameterBufferH264*)user_data)->ReferenceFrames[i]);