Home
last modified time | relevance | path

Searched refs:H264SliceHeader (Results 1 – 6 of 6) sorted by relevance

/external/v4l2_codec2/vda/
Dh264_decoder.h74 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);
267 std::unique_ptr<H264SliceHeader> curr_slice_hdr_;
Dh264_parser.h242 struct H264SliceHeader { struct
243 H264SliceHeader();
436 Result ParseSliceHeader(const H264NALU& nalu, H264SliceHeader* shdr);
470 Result ParseRefPicListModifications(H264SliceHeader* shdr);
475 Result ParsePredWeightTable(const H264SPS& sps, H264SliceHeader* shdr);
485 Result ParseDecRefPicMarking(H264SliceHeader* shdr);
Dh264_decoder.cc68 void H264Decoder::PrepareRefPicLists(const H264SliceHeader* slice_hdr) { in PrepareRefPicLists()
73 bool H264Decoder::ModifyReferencePicLists(const H264SliceHeader* slice_hdr, in ModifyReferencePicLists()
113 bool H264Decoder::InitCurrPicture(const H264SliceHeader* slice_hdr) { in InitCurrPicture()
394 const H264SliceHeader* slice_hdr) { in ConstructReferencePicListsP()
429 const H264SliceHeader* slice_hdr) { in ConstructReferencePicListsB()
527 bool H264Decoder::ModifyReferencePicList(const H264SliceHeader* slice_hdr, in ModifyReferencePicList()
567 for (int i = 0; i < H264SliceHeader::kRefListModSize && !done; ++i) { in ModifyReferencePicList()
601 H264SliceHeader::kRefListModSize); in ModifyReferencePicList()
621 H264SliceHeader::kRefListModSize); in ModifyReferencePicList()
713 bool H264Decoder::StartNewFrame(const H264SliceHeader* slice_hdr) { in StartNewFrame()
[all …]
Dh264_parser.cc18 bool H264SliceHeader::IsPSlice() const { in IsPSlice()
22 bool H264SliceHeader::IsBSlice() const { in IsBSlice()
26 bool H264SliceHeader::IsISlice() const { in IsISlice()
30 bool H264SliceHeader::IsSPSlice() const { in IsSPSlice()
34 bool H264SliceHeader::IsSISlice() const { in IsSISlice()
127 H264SliceHeader::H264SliceHeader() { in H264SliceHeader() function in media::H264SliceHeader
1133 H264SliceHeader* shdr) { in ParseRefPicListModifications()
1204 H264SliceHeader* shdr) { in ParsePredWeightTable()
1231 H264Parser::Result H264Parser::ParseDecRefPicMarking(H264SliceHeader* shdr) { in ParseDecRefPicMarking()
1280 H264SliceHeader* shdr) { in ParseSliceHeader()
Dh264_dpb.h61 H264SliceHeader::Type type;
82 H264DecRefPicMarking ref_pic_marking[H264SliceHeader::kRefListSize];
Dh264_dpb.cc32 type(H264SliceHeader::kPSlice), in H264Picture()