Searched refs:slice_hdr (Results 1 – 2 of 2) sorted by relevance
/external/v4l2_codec2/vda/ |
D | h264_decoder.cc | 68 void H264Decoder::PrepareRefPicLists(const H264SliceHeader* slice_hdr) { in PrepareRefPicLists() argument 69 ConstructReferencePicListsP(slice_hdr); in PrepareRefPicLists() 70 ConstructReferencePicListsB(slice_hdr); in PrepareRefPicLists() 73 bool H264Decoder::ModifyReferencePicLists(const H264SliceHeader* slice_hdr, in ModifyReferencePicLists() argument 80 if (slice_hdr->IsPSlice() || slice_hdr->IsSPSlice()) { in ModifyReferencePicLists() 82 return ModifyReferencePicList(slice_hdr, 0, ref_pic_list0); in ModifyReferencePicLists() 83 } else if (slice_hdr->IsBSlice()) { in ModifyReferencePicLists() 86 return ModifyReferencePicList(slice_hdr, 0, ref_pic_list0) && in ModifyReferencePicLists() 87 ModifyReferencePicList(slice_hdr, 1, ref_pic_list1); in ModifyReferencePicLists() 113 bool H264Decoder::InitCurrPicture(const H264SliceHeader* slice_hdr) { in InitCurrPicture() argument [all …]
|
D | h264_decoder.h | 74 const H264SliceHeader* slice_hdr, 145 bool IsNewPrimaryCodedPicture(const H264SliceHeader* slice_hdr) const; 148 bool InitCurrPicture(const H264SliceHeader* slice_hdr); 165 void PrepareRefPicLists(const H264SliceHeader* slice_hdr); 167 bool ModifyReferencePicLists(const H264SliceHeader* slice_hdr, 173 void ConstructReferencePicListsP(const H264SliceHeader* slice_hdr); 174 void ConstructReferencePicListsB(const H264SliceHeader* slice_hdr); 184 bool ModifyReferencePicList(const H264SliceHeader* slice_hdr, 200 bool StartNewFrame(const H264SliceHeader* slice_hdr);
|