Home
last modified time | relevance | path

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

/external/libgav1/src/
Dobu_parser.cc140 bool ObuParser::ParseColorConfig(ObuSequenceHeader* sequence_header) { in ParseColorConfig()
247 bool ObuParser::ParseTimingInfo(ObuSequenceHeader* sequence_header) { in ParseTimingInfo()
274 bool ObuParser::ParseDecoderModelInfo(ObuSequenceHeader* sequence_header) { in ParseDecoderModelInfo()
292 bool ObuParser::ParseOperatingParameters(ObuSequenceHeader* sequence_header, in ParseOperatingParameters()
313 bool ObuParser::ParseSequenceHeader(bool seen_frame_header) { in ParseSequenceHeader()
501 void ObuParser::MarkInvalidReferenceFrames() { in MarkInvalidReferenceFrames()
528 bool ObuParser::ParseFrameSizeAndRenderSize() { in ParseFrameSizeAndRenderSize()
564 bool ObuParser::ParseSuperResParametersAndComputeImageSize() { in ParseSuperResParametersAndComputeImageSize()
598 bool ObuParser::ValidateInterFrameSize() const { in ValidateInterFrameSize()
618 bool ObuParser::ParseReferenceOrderHint() { in ParseReferenceOrderHint()
[all …]
Dobu_parser.h224 class ObuParser : public Allocable {
226 ObuParser(const uint8_t* const data, size_t size, int operating_point, in ObuParser() function
235 ObuParser(const ObuParser& rhs) = delete;
236 ObuParser& operator=(const ObuParser& rhs) = delete;
Ddecoder_impl.h53 EncodedFrame(ObuParser* const obu, const DecoderState& state, in EncodedFrame()
208 bool IsNewSequenceHeader(const ObuParser& obu);
Ddecoder_impl.cc645 std::unique_ptr<ObuParser> obu(new (std::nothrow) ObuParser( in InitializeFrameThreadPoolAndTemporalUnitQueue()
832 std::unique_ptr<ObuParser> obu(new (std::nothrow) ObuParser( in ParseAndSchedule()
1019 std::unique_ptr<ObuParser> obu(new (std::nothrow) ObuParser( in DecodeTemporalUnit()
1692 bool DecoderImpl::IsNewSequenceHeader(const ObuParser& obu) { in IsNewSequenceHeader()
Dobu_parser_test.cc273 obu_.reset(new (std::nothrow) ObuParser(nullptr, 0, 0, buffer_pool_.get(), in Init()
283 obu_.reset(new (std::nothrow) ObuParser( in Init()
854 std::unique_ptr<ObuParser> obu_;
864 ObuParser(nullptr, 0, 0, buffer_pool_.get(), &decoder_state_)); in TEST_F()
866 obu_.reset(new (std::nothrow) ObuParser(nullptr, 10, 0, buffer_pool_.get(), in TEST_F()
870 ObuParser(kDefaultTemporalDelimiter.data(), 0, 0, in TEST_F()
/external/libgav1/tests/fuzzer/
Dobu_parser_fuzzer.cc50 libgav1::ObuParser parser(data, size, 0, &buffer_pool, &decoder_state); in ParseObu()